/* 
  PM4U Academy - Premium Design System
  Built with Glassmorphism, Dynamic Transitions & Modern Typography
*/

:root {
  /* Colors - Premium HSL Palette */
  --bg: hsl(210, 20%, 98%);
  --bg-alt: hsl(210, 20%, 96%);
  --fg: hsl(220, 40%, 12%);
  --fg-muted: hsl(215, 20%, 45%);
  --fg-subtle: hsl(215, 15%, 65%);

  --accent: hsl(221, 83%, 53%);
  --accent-light: hsl(221, 100%, 96%);
  --accent-hover: hsl(221, 80%, 45%);
  --accent-glow: hsla(221, 83%, 53%, 0.15);

  --border: hsl(215, 20%, 90%);
  --border-strong: hsl(215, 20%, 82%);
  --surface: hsl(0, 0%, 100%);
  --surface-hover: hsla(215, 20%, 95%, 0.5);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: 16px;

  /* Shadows - Multi-layered */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-accent: 0 10px 15px -3px hsla(221, 83%, 53%, 0.2);

  /* Utils */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-w: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Dark Mode Tokens (Ready for toggle) */
[data-theme="dark"] {
  --bg: hsl(220, 40%, 4%);
  --bg-alt: hsl(220, 40%, 7%);
  --fg: hsl(210, 20%, 96%);
  --fg-muted: hsl(215, 15%, 75%);
  --fg-subtle: hsl(215, 15%, 55%);
  --border: hsl(220, 30%, 15%);
  --border-strong: hsl(220, 30%, 25%);
  --surface: hsl(220, 40%, 8%);
  --surface-hover: hsla(220, 30%, 20%, 0.5);
  --glass-bg: rgba(15, 20, 30, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Improve font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  transition: background 0.5s ease;
  padding-top: 100px;
  /* Space for floating header */
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #60a5fa 100%);
  z-index: 2000;
  transition: width 0.1s ease-out;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HYBRID PREMIUM HEADER (Chính xác theo Hình 1 & 2) ── */
nav.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #F1F5F9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo img {
  height: 34px;
  width: auto;
}

/* Menu Capsule (Center) */
.nav-links-capsule {
  background: #F1F5F9;
  padding: 4px;
  border-radius: 100px;
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links-capsule a {
  padding: 8px 18px;
  border-radius: 100px;
  color: #64748B;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.nav-links-capsule a:hover,
.nav-links-capsule a.active {
  color: #0F172A;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Right Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Account Pill (Sang Huynh style) */
.account-pill {
  background: #fff;
  border: 1px solid #E2E8F0;
  padding: 4px 16px 4px 5px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  user-select: none;
}

.account-pill.open,
.account-pill:hover {
  border-color: #CBD5E1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.account-pill button {
  color: inherit;
}

.account-pill .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #F1F5F9;
}

.account-pill .name {
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
  max-width: 116px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown Card */
.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14), 0 3px 10px rgba(15, 23, 42, 0.08);
  border: 1px solid #E2E8F0;
  padding: 8px;
  display: block;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  overflow: hidden;
}

.account-pill.open .account-dropdown,
.account-dropdown.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-user-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 10px 12px;
  border-bottom: 1px solid #EEF2F7;
  margin-bottom: 4px;
}

.dropdown-user-header img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.dropdown-user-header .details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dropdown-user-header .user-name {
  font-weight: 800;
  font-size: 14px;
  color: #0F172A;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-user-header .user-email {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 10px;
  text-decoration: none;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover {
  background: #F1F5F9;
  color: #2563EB;
  transform: translateX(2px);
}

.dropdown-item.logout {
  color: #B45309;
}

.dropdown-item.logout:hover {
  color: #C2410C;
  background: #FFF7ED;
}

.dropdown-divider {
  height: 1px;
  background: #EEF2F7;
  margin: 5px 4px;
}

/* CTA Header Button */
.btn-cta-header {
  background: #2563EB;
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-cta-header:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-cta-header span.arrow {
  transition: transform 0.2s;
}

.btn-cta-header:hover span.arrow {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .nav-links-capsule {
    display: none;
  }
}

.nav-dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-dropdown-name {
  font-weight: 700;
  font-size: 15px;
}

.nav-dropdown-email {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    gap: 8px;
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
    animation: slideInUp 0.3s ease forwards;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
    background: transparent !important;
  }

  .nav-links a:hover {
    background: var(--bg-alt) !important;
  }

  .nav-auth-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.03);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  margin-left: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Selection */
::selection {
  background: var(--accent-light);
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.1) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.btn-primary:hover::after {
  left: 100%;
  top: 100%;
  opacity: 1;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px -5px hsla(221, 83%, 53%, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface-hover);
  border-color: var(--fg);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  color: var(--fg);
}

.btn-soft {
  background: var(--accent-light);
  color: var(--accent);
}

.btn-soft:hover {
  background: hsl(221, 100%, 92%);
  transform: translateY(-3px);
}

.btn-primary-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-soft-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.text-link {
  color: var(--fg-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.text-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.link-sep {
  color: var(--border-strong);
  margin: 0 8px;
}

/* ── HERO SECTION ── */
.hero {
  padding: 80px 0 60px;
  /* giảm từ ~120–160px */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 600px;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  border: 1px solid var(--accent-light);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero h1 .accent-text {
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

.hero-reassurance {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin: 16px 0 0 0;
  opacity: 0.8;
  font-weight: 500;
}

.hero-primary-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-secondary-links {
  font-size: 14px;
  display: flex;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* AI Coach Demo - Improved typing animation container */
.ai-coach-demo {
  max-width: 640px;
  margin: 64px auto 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  text-align: left;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateX(2deg);
  transition: transform 0.5s ease;
}

.ai-coach-demo:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.ai-coach-demo .ai-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.ai-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  position: relative;
}

.ai-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #10b981;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.ai-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}

.ai-msg {
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 18px;
  border-radius: 16px;
  max-width: 85%;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-msg.user {
  align-self: flex-end;
  background: var(--accent);
  color: white;
  border-bottom-right-radius: 4px;
}

.ai-msg.bot {
  align-self: flex-start;
  background: var(--bg-alt);
  color: var(--fg);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 0.8s infinite;
  vertical-align: middle;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── SECTIONS COMMON ── */
section {
  padding: 120px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 64px;
}

.center {
  text-align: center;
}

.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── FEATURES / PILLARS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  background: var(--bg-alt);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-light);
}

/* ── COURSES ── */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* Removed: consolidated all tracks into unified .course-card styling */

/* NOTE: active .course-card / .course-level / .course-meta / .course-price rules live below with the upgraded course-offer design. The old glassmorphism variants here were removed during cleanup. */

.course-emotion {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.fear-removal {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fear-removal::before {
  content: '🛡';
}

/* ── TESTIMONIALS REFINED ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--surface);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  will-change: transform;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 80px;
  line-height: 1;
  font-family: 'Georgia', serif;
  color: var(--bg-alt);
  opacity: 0.5;
  transition: color 0.3s ease;
}

.testimonial-card:hover::before {
  color: var(--accent-light);
}

.offer-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.offer-price-original {
  font-size: 16px;
  color: var(--fg-subtle);
  text-decoration: line-through;
  font-weight: 500;
}

.offer-eb-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offer-slot-progress {
  margin: 16px 0;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.slot-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--fg-muted);
}

.slot-count strong {
  color: var(--accent);
  font-size: 15px;
}

.slot-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.slot-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #60a5fa 100%);
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slot-progress-footer {
  margin-top: 10px;
  font-size: 11px;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-card blockquote {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 32px;
  position: relative;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info .name {
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}

.author-info .role {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── HERO SOCIAL PROOF ── */
.hero-social-proof {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  font-size: 13.5px;
  color: var(--fg-muted);
}

.avatar-stack {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-stack .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--surface);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.avatar-stack .av:first-child {
  margin-left: 0;
}

/* ── LOGOS BAR ── */
.logos-bar {
  padding: 40px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.logos-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-subtle);
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  opacity: 0.7;
}

.company-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--fg-muted);
  letter-spacing: -1px;
  filter: grayscale(1) contrast(0.5);
  opacity: 0.4;
  transition: all 0.4s ease;
  cursor: default;
}

.company-logo:hover {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  color: var(--accent);
  transform: scale(1.1);
}

/* ── MOUSE MOVE / PARALLAX ── */
.parallax-item {
  transition: transform 0.2s ease-out;
}

/* ── FLOATING ANIMATION ── */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

.company-logo .dot {
  color: var(--accent);
}

@media (max-width: 768px) {
  .logos-bar {
    padding: 32px 0;
  }

  .logos-inner {
    gap: 20px;
  }

  .logos-label {
    font-size: 11px;
    letter-spacing: 1px;
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .company-logo {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .logos-bar {
    padding: 24px 0;
  }

  .logos-inner {
    gap: 16px;
    padding: 0 8px;
  }

  .company-logo {
    font-size: 14px;
  }
}

/* ── TOOLS GALLERY ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  text-align: left;
  will-change: transform;
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.tool-thumb {
  font-size: 40px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tool-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tool-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

/* ── HOW IT WORKS / STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.step {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-accent);
}

.cta-box h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-alt);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  color: var(--fg-muted);
  font-size: 14px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
  color: var(--fg-subtle);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-tm {
  color: var(--fg-subtle);
  font-size: 12px;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13px;
}

.footer-legal a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-addr {
  color: var(--fg-muted);
  list-style: none;
  line-height: 1.6;
}

.footer-tax {
  color: var(--fg-muted);
  list-style: none;
  line-height: 1.6;
  font-size: 0.9em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .features-grid,
  .courses-grid,
  .testimonials-grid,
  .steps-grid,
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .features-grid,
  .courses-grid,
  .testimonials-grid,
  .steps-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
  }
}

/* Scroll Reveal */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTACT PAGE SPECIFIC ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--surface);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.form-label .req {
  color: var(--accent);
}

.form-input {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  font-family: var(--font);
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.info-block h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text .label {
  display: block;
  font-size: 12px;
  color: var(--fg-subtle);
  margin-bottom: 2px;
}

.info-text .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.hours-row .day {
  color: var(--fg-muted);
}

.hours-row .time {
  font-weight: 600;
}

.success-card {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.success-card.show {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── INSTRUCTOR SECTION ── */
.instructor {
  background: linear-gradient(165deg, hsl(221, 83%, 40%) 0%, hsl(221, 83%, 25%) 100%);
  color: white;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.header-capsule .logo img {
  height: 36px !important;
  width: auto;
  display: block;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links-wrapper {
  background: #F8FAFC;
  padding: 4px;
  border-radius: 100px;
  display: flex;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-link {
  padding: 8px 16px;
  border-radius: 100px;
  color: #64748B !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: 0.2s;
}

.nav-link:hover {
  color: #0F172A !important;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.instructor-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.instructor-image::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, hsla(0, 0%, 100%, 0.1) 0%, transparent 70%);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.instructor-image img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 40px;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instructor-image:hover img {
  transform: translateY(-10px) scale(1.02);
}

.instructor-content {
  display: flex;
  flex-direction: column;
}

.instructor-content .section-label {
  margin-bottom: 24px;
  width: fit-content;
}

.instructor-name {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.instructor-tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.5;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-item {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid hsla(0, 0%, 100%, 0.15);
  transition: all 0.3s ease;
}

.exp-item:hover {
  border-left-color: white;
  padding-left: 24px;
}

.exp-item h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  color: white;
}

.exp-item p {
  font-size: 15px;
  line-height: 1.6;
  color: hsla(0, 0%, 100%, 0.75);
}

.instructor-social {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.instructor-social .social-btn {
  background: hsla(0, 0%, 100%, 0.1);
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.instructor-social .social-btn:hover {
  background: white;
  color: var(--accent);
  transform: translateY(-3px);
}

.instructor-social .social-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .instructor-image img {
    max-width: 360px;
    margin: 0 auto;
  }

  .exp-item {
    padding-left: 0;
    border-left: none;
  }

  .instructor-social {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════ */
/* STORYTELLING LAYER — Pain, Bridges, Chapter tags       */
/* ══════════════════════════════════════════════════════ */

/* Chapter tag — shared ribbon above section titles */
.chapter-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid hsla(221, 83%, 53%, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* Story bridge — narrative transition between sections */
.story-bridge {
  max-width: 800px;
  margin: 80px auto 0;
  text-align: center;
  padding: 40px 32px 0;
  border-top: 2px solid var(--border);
  position: relative;
}

.story-bridge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.story-bridge p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--fg-muted);
  font-style: italic;
  margin: 0 auto;
  max-width: 700px;
  letter-spacing: -0.3px;
  font-weight: 500;
}

.story-bridge strong {
  color: var(--fg);
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #1E3A8A, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bridge-arrow {
  margin-top: 28px;
  font-size: 32px;
  color: var(--accent);
  animation: bridgeBounce 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  display: inline-block;
}

@keyframes bridgeBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.story-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.story-intro .section-title {
  margin-top: 12px;
}

.story-intro .section-desc {
  margin-top: 16px;
}

/* ── PAIN SECTION ── */
.pain-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.pain-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.pain-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pain-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.pain-card strong {
  color: var(--fg);
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FOUNDER PUNCHLINE (inside instructor) ── */
.story-founder {
  background: var(--bg-alt);
}

.founder-punchline {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
}

.founder-punchline p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 8px;
}

.founder-punchline cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
}

/* ── PILLAR ORDER badges ── */
.pillar-order {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  font-weight: 900;
  color: var(--border-strong);
  letter-spacing: -1px;
  line-height: 1;
}

.feature-card {
  position: relative;
}

.pillar-code {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════ */
/* COURSES SECTION — 3 Mastery Tracks                     */
/* ══════════════════════════════════════════════════════ */
.courses-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.courses-section .courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.course-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.course-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.course-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.course-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.course-badge.coming-soon {
  background: var(--fg-subtle);
  color: var(--fg);
  top: 12px;
  left: 12px;
  transform: none;
}

.course-level {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.course-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.course-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-outcomes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.course-outcomes li {
  font-size: 14px;
  color: var(--fg);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}

.course-outcomes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 700;
}

.course-meta {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.course-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.course-cta {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .courses-section .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .courses-section .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════ */
/* STATS ROW (inside testimonials section)                */
/* ══════════════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

@media (max-width: 760px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-num {
    font-size: 36px;
  }
}

/* Final CTA: add chapter tag spacing */
.final-cta .chapter-tag {
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════ */
/* CONVERSION-OPTIMIZED LAYOUT                            */
/* Hero Triplet · VS · Founder Mini · How · Transform     */
/* Persona · FAQ · Multi-CTA                              */
/* ══════════════════════════════════════════════════════ */

/* ── HERO LEDE & TRIPLET ── */
.hero-lede {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.hero-pain-hook {
  max-width: 680px;
  margin: 20px auto 24px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.2px;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: #F9FAFB;
  border-radius: 0 8px 8px 0;
  text-align: left;
}

@media (max-width: 640px) {
  .hero-pain-hook {
    font-size: 17px;
  }
}

.hero-triplet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 32px;
  text-align: left;
}

.triplet-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.triplet-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.triplet-value {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 500;
}

@media (max-width: 860px) {
  .hero-triplet {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════ */
/* VS SECTION — PMP vs Real PM vs PM4U                    */
/* ══════════════════════════════════════════════════════ */
.vs-section {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.vs-col {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s;
}

.vs-col-middle {
  opacity: 0.85;
}

.vs-col-highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 20px 40px -20px hsla(221, 83%, 53%, 0.35);
  transform: translateY(-8px);
  background: linear-gradient(180deg, var(--surface) 0%, var(--accent-light) 100%);
}

.vs-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.vs-head {
  margin-bottom: 20px;
}

.vs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.vs-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.3px;
}

.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg);
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.vs-list li:last-child {
  border-bottom: none;
}

.vs-list li.vs-gap {
  color: var(--fg-muted);
}

.vs-list li.vs-gap em {
  font-style: italic;
  color: var(--fg);
}

.vs-check,
.vs-check-strong,
.vs-dash {
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: 700;
}

.vs-check {
  color: #10b981;
}

.vs-check-strong {
  color: var(--accent);
  font-size: 16px;
}

.vs-dash {
  color: var(--fg-subtle);
}

.vs-footnote {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 24px 28px;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  text-align: center;
}

.vs-footnote p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
}

@media (max-width: 960px) {
  .vs-grid {
    grid-template-columns: 1fr;
  }

  .vs-col-highlight {
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════ */
/* FOUNDER MINI (shortened)                               */
/* ══════════════════════════════════════════════════════ */
/* ── FOUNDER SECTION (MERGED) ── */
/* ══════════════════════════════════════════════════════ */
/* FOUNDER/MENTOR SECTION — Premium Mentor Card          */
/* ══════════════════════════════════════════════════════ */

.founder-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #f5fafe 100%);
}

/* Mentor Hero Card */
.mentor-hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mentor-hero-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 48px -8px rgba(15, 23, 42, 0.14), 0 0 0 1px #3B82F6;
}

/* Mentor Grid */
.mentor-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mentor Image */
.mentor-image-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}

.mentor-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  min-height: 580px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 20px 60px -8px rgba(0, 0, 0, 0.1);
}

.mentor-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

/* Mentor Badge Corner */
.mentor-badge-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.badge-text {
  background: rgba(255, 255, 255, 0.95);
  color: #1E3A8A;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Mentor Content */
.mentor-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mentor-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mentor-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #2563EB;
}

.mentor-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--fg);
  margin: 0;
}

.mentor-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-muted);
  margin: 0;
}

/* Mentor Bio */
.mentor-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0;
}

/* Companies Badge */
.mentor-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.company-badge {
  background: linear-gradient(135deg, #EFF6FF, #F3E8FF);
  border: 1px solid var(--border);
  color: #2563EB;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.company-badge:hover {
  border-color: #2563EB;
  background: #EFF6FF;
  transform: translateY(-2px);
}

/* Value List */
.mentor-value-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #DBEAFE;
  color: #2563EB;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

.value-text span {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Mentor CTA */
.mentor-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
  .mentor-grid {
    grid-template-columns: 400px 1fr;
    gap: 48px;
  }

  .mentor-image-frame {
    min-height: 540px;
  }

  .mentor-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 60px 0;
  }

  .mentor-hero-card {
    padding: 24px;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mentor-image-frame {
    width: 100%;
    max-width: 100%;
    min-height: 480px;
    margin: 0 auto;
  }

  .mentor-title {
    font-size: 32px;
  }

  .mentor-subtitle {
    font-size: 16px;
  }

  .mentor-companies {
    gap: 8px;
  }

  .company-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.founder-mini {
  padding: 96px 0;
}

.founder-mini-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-mini-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
}

.founder-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-mini-name {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin: 14px 0 20px;
  color: var(--fg);
}

.founder-mini-story {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.founder-mini-story strong {
  color: var(--fg);
}

.founder-mini-punchline {
  margin: 24px 0;
  padding: 24px 28px;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 17px;
  line-height: 1.55;
  font-style: italic;
  color: var(--fg);
}

.founder-mini-punchline cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
  letter-spacing: 0.3px;
}

.founder-mini-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-mini-creds span {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

@media (max-width: 760px) {
  .founder-mini-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-mini-image {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════════════════ */
/* FEATURE OUTCOMES (inside 3-Pillar cards)               */
/* ══════════════════════════════════════════════════════ */
.feature-outcome-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 12px 0 8px;
}

.feature-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-outcomes li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg);
  padding: 6px 0 6px 22px;
  position: relative;
}

.feature-outcomes li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════ */
/* HOW PM4U WORKS — Mentor + AI + System                  */
/* ══════════════════════════════════════════════════════ */
.how-works {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.how-grid.how-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.how-card {
  position: relative;
}

.how-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .how-grid.how-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .how-grid.how-grid-4 {
    grid-template-columns: 1fr;
  }
}

.how-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.how-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.how-card-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.how-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.how-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.how-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.how-lead {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.how-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.how-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg);
  padding: 6px 0 6px 22px;
  position: relative;
}

.how-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 960px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════ */
/* TRANSFORMATION — Before / After                        */
/* ══════════════════════════════════════════════════════ */
.transformation {
  padding: 96px 0;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.transform-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.transform-before {
  background: hsl(0, 30%, 98%);
  border-color: hsl(0, 30%, 90%);
}

.transform-after {
  background: linear-gradient(180deg, var(--surface) 0%, var(--accent-light) 100%);
  border-color: var(--accent);
}

.transform-head {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.transform-before .transform-head {
  color: #b91c1c;
}

.transform-after .transform-head {
  color: var(--accent);
}

.transform-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transform-col li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.transform-col li:last-child {
  border-bottom: none;
}

.transform-before li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 10px;
  color: #dc2626;
  font-weight: 700;
}

.transform-after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-weight: 700;
}

.transform-arrow {
  font-size: 40px;
  color: var(--accent);
  text-align: center;
  font-weight: 700;
  padding-top: 80px;
}

@media (max-width: 860px) {
  .transform-grid {
    grid-template-columns: 1fr;
  }

  .transform-arrow {
    padding: 0;
    transform: rotate(90deg);
  }
}

/* ══════════════════════════════════════════════════════ */
/* TRACK SELECTOR — Persona cards                         */
/* ══════════════════════════════════════════════════════ */
.track-selector {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.persona-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.persona-card-middle {
  border-color: var(--accent);
}

.persona-emoji {
  font-size: 40px;
  margin-bottom: 12px;
}

.persona-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.persona-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.persona-card>p {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.persona-rec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.persona-rec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.persona-rec-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.persona-rec-link:hover {
  color: var(--accent-hover);
}

.maturity-cta {
  margin-top: 48px;
  background: var(--surface);
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.maturity-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.maturity-inner strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  display: block;
}

.maturity-inner p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

@media (max-width: 960px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════ */
/* TESTIMONIALS — Before/After tags                       */
/* ══════════════════════════════════════════════════════ */
.t-beforeafter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}

.t-before,
.t-after {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

.t-before {
  background: hsl(0, 40%, 96%);
  color: #b91c1c;
}

.t-after {
  background: var(--accent-light);
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════ */
/* FAQ                                                    */
/* ══════════════════════════════════════════════════════ */
.faq {
  padding: 96px 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}

.faq-body {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.faq-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.faq-body strong {
  color: var(--fg);
}

/* ══════════════════════════════════════════════════════ */
/* MULTI-LEVEL CTA                                        */
/* ══════════════════════════════════════════════════════ */
.final-cta-multi {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.cta-level {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.cta-level:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.cta-level-featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent);
}

.cta-level-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.cta-level-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.cta-level h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.cta-level p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 64px;
}

.cta-level .btn {
  width: 100%;
}

@media (max-width: 960px) {
  .cta-levels {
    grid-template-columns: 1fr;
  }

  .cta-level p {
    min-height: 0;
  }
}

/* ══════════════════════════════════════════════════════ */
/* COHORT / URGENCY BLOCK                                 */
/* ══════════════════════════════════════════════════════ */
.cohort-block {
  padding: 0 0 40px;
  margin-top: -24px;
}

.cohort-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 32px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 36px;
  color: #fff;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.4);
  overflow: hidden;
}

.cohort-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, hsla(221, 83%, 53%, 0.3) 0%, transparent 65%);
  pointer-events: none;
}

.cohort-left {
  position: relative;
  z-index: 1;
}

.cohort-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.cohort-pulse {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: cohortPulse 2s infinite;
}

@keyframes cohortPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.cohort-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 10px;
}

.cohort-title strong {
  color: #60a5fa;
  font-weight: 800;
}

.cohort-sub {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.55;
}

.cohort-sub strong {
  color: #fff;
}

.cohort-countdown {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: center;
}

.cd-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
}

.cd-num {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  font-family: 'JetBrains Mono', monospace;
}

.cd-lbl {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cohort-perks {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.perk {
  font-size: 13.5px;
  color: #e2e8f0;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.perk strong {
  color: #fff;
}

.perk-tick {
  font-size: 16px;
  flex-shrink: 0;
}

.cohort-cta {
  grid-column: 1 / -1;
  justify-self: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .cohort-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .cohort-perks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cohort-title {
    font-size: 22px;
  }
}

/* ══════════════════════════════════════════════════════ */
/* AI COACH LIVE DEMO                                     */
/* ══════════════════════════════════════════════════════ */
.ai-demo-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-console {
  max-width: 880px;
  margin: 0 auto;
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.45);
  overflow: hidden;
}

.ai-console-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
}

.ai-dots {
  display: flex;
  gap: 6px;
}

.ai-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.ai-dots span:nth-child(1) {
  background: #ef4444;
}

.ai-dots span:nth-child(2) {
  background: #f59e0b;
}

.ai-dots span:nth-child(3) {
  background: #22c55e;
}

.ai-console-title {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

.ai-console-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.ai-console-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-turn {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ai-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.ai-avatar-user {
  background: #334155;
  color: #e2e8f0;
}

.ai-avatar-bot {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
}

.ai-bubble {
  flex: 1;
  background: #111c2e;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: #e2e8f0;
}

.ai-turn-user .ai-bubble {
  background: #162033;
}

.ai-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 10px;
}

.ai-bubble p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #e2e8f0;
}

.ai-bubble p em {
  color: #93c5fd;
  font-style: normal;
  font-weight: 600;
}

.ai-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #1e293b;
}

.ai-block:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.ai-block-title {
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.ai-analysis {
  display: grid;
  gap: 8px;
}

.ai-chip {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
  background: #0b1220;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.chip-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #60a5fa;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.chip-v {
  font-size: 13px;
  color: #e2e8f0;
}

.ai-option {
  background: #0b1220;
  border: 1px solid #1e293b;
  border-left: 3px solid #334155;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 10px;
}

.ai-option:has(.ai-tag-green) {
  border-left-color: #22c55e;
}

.ai-option:has(.ai-tag-amber) {
  border-left-color: #f59e0b;
}

.ai-option:has(.ai-tag-red) {
  border-left-color: #ef4444;
  opacity: 0.85;
}

.ai-option-head {
  font-size: 13.5px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-option-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.ai-tag-green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.ai-tag-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.ai-tag-red {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.ai-option p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #cbd5e1;
}

.ai-option p em {
  color: #93c5fd;
  font-style: normal;
}

.ai-artifacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-artifact {
  font-size: 12px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.ai-console-foot {
  padding: 16px 24px;
  background: #0f172a;
  border-top: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ai-typing {
  font-size: 12.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  animation: typingBlink 1.4s infinite ease-in-out both;
}

.ai-typing span:nth-child(1) {
  animation-delay: -0.3s;
}

.ai-typing span:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes typingBlink {

  0%,
  80%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

@media (max-width: 720px) {
  .ai-chip {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ai-console-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .ai-console-body {
    padding: 18px;
  }
}

/* ══════════════════════════════════════════════════════ */
/* HARD OUTCOME METRICS                                   */
/* ══════════════════════════════════════════════════════ */
.metrics-section {
  padding: 96px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.2s, transform 0.2s;
}

.metric-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 14px;
  min-height: 40px;
  line-height: 1.4;
}

.metric-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.metric-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1.5px;
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}

.metric-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-muted);
}

.metric-bar {
  height: 6px;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 10px;
}

.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #8b5cf6);
  border-radius: var(--radius-full);
  transition: width 0.8s ease;
}

.metric-note {
  font-size: 12.5px;
  color: var(--fg-subtle);
  line-height: 1.5;
}

.metrics-disclaimer {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-subtle);
  font-style: italic;
}

.metrics-disclaimer strong {
  color: var(--fg);
  font-style: normal;
}

@media (max-width: 860px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-label {
    min-height: 0;
  }
}

/* ══════════════════════════════════════════════════════ */
/* COURSE CARDS — Upgraded                                */
/* ══════════════════════════════════════════════════════ */
.course-promise {
  margin: 14px 0 16px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border-strong);
}

.course-promise-featured {
  background: var(--accent-light);
  border-left-color: var(--accent);
}

.promise-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.course-promise p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 500;
}

.course-promise p strong {
  color: var(--accent);
  font-weight: 700;
}

.course-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0 14px;
  margin-top: auto;
}

.course-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 12px;
  min-height: 20px;
}

.course-price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 18px;
  min-height: 56px;
}

.course-price-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.course-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.8px;
  line-height: 1;
  margin-bottom: 0;
}

.course-price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-left: 2px;
}

.course-price-note {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.courses-assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.assurance-item {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg-muted);
}

/* ══════════════════════════════════════════════════════ */
/* FAQ — Comparison list inside answer                    */
/* ══════════════════════════════════════════════════════ */
.faq-comparison {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
}

.faq-comparison li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.faq-comparison li:last-child {
  border-bottom: none;
}

.faq-comparison li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.faq-comparison li strong {
  color: var(--fg);
}

/* ══════════════════════════════════════════════════════ */
/* FINAL CTA — Premium with risk reversal                 */
/* ══════════════════════════════════════════════════════ */
.final-cta-premium {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.final-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.final-cta-head {
  text-align: center;
  margin-bottom: 48px;
}

.final-cta-head h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--fg);
  margin: 14px 0 16px;
}

.final-cta-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.guarantee-strip {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.guarantee-main {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.guarantee-shield {
  font-size: 40px;
  flex-shrink: 0;
}

.guarantee-copy strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.guarantee-copy p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.guarantee-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.guarantee-bullets li {
  font-size: 14px;
  color: var(--fg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.guarantee-bullets li span {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.final-cta-advice {
  margin-top: 32px;
  text-align: center;
  padding: 20px 24px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--accent);
  font-size: 15px;
  color: var(--fg);
}

.final-cta-advice strong {
  color: var(--accent);
}

.final-cta-advice a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .guarantee-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .final-cta-head h2 {
    font-size: 30px;
  }
}

/* ══════════════════════════════════════════════════════ */
/* COHORT LIVE BAR + 4-SEGMENT COUNTDOWN                  */
/* ══════════════════════════════════════════════════════ */
.cohort-live-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 14px;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #f87171;
  padding: 3px 8px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-full);
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
  animation: cohortPulse 1.6s infinite;
}

.viewers-now,
.seats-left {
  font-size: 13px;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.viewers-now strong,
.seats-left strong {
  color: #fff;
  font-weight: 700;
}

.viewers-icon {
  font-size: 13px;
}

.seats-left {
  margin-left: auto;
}

.cohort-micro-proof {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #10b981;
  font-weight: 600;
  padding: 8px 12px;
  margin-top: -2px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.proof-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37, 99, 235, 0.4);
  animation: proof-pulse 2s infinite;
}

@keyframes proof-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.cohort-countdown {
  grid-template-columns: repeat(4, 1fr) !important;
}

.cd-num {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 860px) {
  .cohort-live-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .seats-left {
    margin-left: 0;
  }
}

/* ══════════════════════════════════════════════════════ */
/* WHEN YOU WILL USE AI COACH                             */
/* ══════════════════════════════════════════════════════ */
.ai-use-section {
  padding: 80px 0 96px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.ai-use-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.ai-use-head .section-title {
  margin: 12px 0 14px;
}

.ai-use-head em {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.ai-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.ai-use-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.ai-use-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.ai-use-when {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}

.ai-use-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted);
}

.ai-personalization {
  margin-top: 48px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 24px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ai-personalization p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .ai-use-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════ */
/* IDENTITY MATCH                                         */
/* ══════════════════════════════════════════════════════ */
.identity-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.identity-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.identity-item:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.identity-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.identity-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-strong);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.15s;
  background: var(--surface);
}

.identity-tick {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.15s;
}

.identity-item input:checked~.identity-box {
  background: var(--accent);
  border-color: var(--accent);
}

.identity-item input:checked~.identity-box .identity-tick {
  opacity: 1;
}

.identity-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
}

.identity-copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
}

.identity-copy strong {
  color: var(--accent);
  font-weight: 700;
}

.identity-footer {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 24px 28px;
  background: var(--accent-light);
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.identity-footer p {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.55;
  margin: 0;
}

.identity-footer strong {
  color: var(--accent);
}

@media (max-width: 760px) {
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .identity-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════ */
/* COURSE CARD — ultra-specific outcome                   */
/* ══════════════════════════════════════════════════════ */
.course-scenario {
  margin: 0 0 14px;
  padding: 12px 14px;
  background: hsla(221, 83%, 53%, 0.05);
  border: 1px solid hsla(221, 83%, 53%, 0.15);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg);
}

.course-scenario strong {
  color: var(--accent);
  font-weight: 700;
}

.course-scenario-featured {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--accent);
}

/* ══════════════════════════════════════════════════════ */
/* FINAL CTA — Urgency banner + guarantee XL              */
/* ══════════════════════════════════════════════════════ */
.final-urgency-banner {
  max-width: 820px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.4);
}

.fub-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}

.fub-pulse {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: cohortPulse 1.8s infinite;
}

.fub-text {
  font-size: 14.5px;
  color: #e2e8f0;
  line-height: 1.5;
}

.fub-text strong {
  color: #fff;
  font-weight: 700;
}

.fub-cta {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.fub-cta:hover {
  background: var(--accent-hover);
}

.guarantee-strip-xl {
  border: 2px solid var(--accent);
  box-shadow: 0 30px 60px -30px hsla(221, 83%, 53%, 0.35);
}

.guarantee-headline {
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.g-highlight {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}

.guarantee-copy p strong {
  color: var(--fg);
  font-weight: 700;
}

@media (max-width: 760px) {
  .final-urgency-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .fub-cta {
    text-align: center;
  }
}


/* Founder image styling */
.founder-mini-image {
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
  /* allow scaled image to overflow container */
  display: inline-block;
}

.founder-mini-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  opacity: 1;
  border: none;
  border-radius: var(--radius);
  transform: scale(2) translateY(30%);
}

/* Sticky CTA Bar (Compact SaaS Dock) */
#sticky-cta-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: auto;
  min-width: 800px;
  max-width: 1100px;
  /* Smaller max-width for a cleaner look */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 10px 20px;
  z-index: 1500;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#sticky-cta-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.sticky-cta-title {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
}

.sticky-seats-pill {
  background: #FEF2F2;
  color: #EF4444;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
}

.sticky-cta-timer-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748B;
  font-size: 12px;
  padding-left: 12px;
  border-left: 1px solid #E2E8F0;
}

.sticky-cta-timer-wrap strong {
  color: #0F172A;
  font-family: 'JetBrains Mono', monospace;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta-actions .btn {
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
}

@media (max-width: 1200px) {
  #sticky-cta-bar {
    min-width: auto;
    width: 95%;
  }
}

@media (max-width: 900px) {
  .sticky-cta-timer-wrap {
    display: none;
  }
}


@media (max-width: 768px) {
  #sticky-cta-bar {
    display: none !important;
  }
}


.mt-hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 18px 0 20px;
  color: var(--fg);
}

.mt-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 32px;
}

.mt-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-alt);
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.mt-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.mt-meta-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.mt-meta-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

.mt-meta-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.mt-hero-pillars {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.mt-pillar-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.mt-pillar-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
}

.mt-pillar-chip.mt-pillar-ps span {
  background: #4F46E5;
}

.mt-pillar-chip.mt-pillar-pp span {
  background: #D97706;
}

.mt-pillar-chip.mt-pillar-pr span {
  background: #2563EB;
}

.mt-cta-start {
  margin-bottom: 14px;
}

.btn-primary-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.mt-hero-note {
  font-size: 13px;
  color: var(--fg-subtle);
  margin: 0;
}

/* ─── Test app ─── */
.mt-app {
  padding: 64px 0 112px;
  background: var(--bg-alt);
  scroll-margin-top: 80px;
}

.mt-app .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.mt-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

/* Progress */
.mt-progress {
  margin-bottom: 36px;
}

.mt-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-subtle);
  margin-bottom: 10px;
}

.mt-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.mt-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* Stages */
.mt-stage h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.3;
  color: var(--fg);
  margin: 0 0 20px;
}

.mt-stage-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mt-stage-actions .btn {
  min-width: 140px;
}

/* Intro */
.mt-stage-intro {
  text-align: center;
}

.mt-intro-ico {
  font-size: 40px;
  margin-bottom: 8px;
}

.mt-stage-intro h2 {
  text-align: center;
}

.mt-rules {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mt-rules li {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.mt-rules li strong {
  color: var(--fg);
  font-weight: 600;
}

.mt-stage-intro .mt-stage-actions {
  justify-content: center;
}

/* Question */
.mt-q-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.mt-q-pillar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--fg);
}

.mt-q-pillar.mt-pillar-ps {
  border-color: #C7D2FE;
  background: #EEF2FF;
  color: #3730A3;
}

.mt-q-pillar.mt-pillar-pp {
  border-color: #FCD9A4;
  background: #FEF3C7;
  color: #92400E;
}

.mt-q-pillar.mt-pillar-pr {
  border-color: #BFDBFE;
  background: #EFF6FF;
  color: #1E40AF;
}

.mt-q-index {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-subtle);
}

.mt-q-text {
  font-size: 22px !important;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.3px;
  margin: 0 0 24px !important;
  color: var(--fg);
}

/* Options */
.mt-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mt-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  transition: border-color 0.15s, background 0.15s;
}

.mt-option:hover {
  border-color: var(--border-strong);
  background: var(--bg-alt);
}

.mt-option-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--border-strong);
  margin-top: 1px;
  position: relative;
  transition: border-color 0.15s;
}

.mt-option.is-selected {
  border-color: var(--accent);
  background: #F5F8FF;
}

.mt-option.is-selected .mt-option-mark {
  border-color: var(--accent);
}

.mt-option.is-selected .mt-option-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.mt-option-text {
  flex: 1;
}

/* Result */
.mt-result-head {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.mt-result-head h2 {
  margin: 14px 0 10px;
  font-size: 30px;
  letter-spacing: -0.8px;
}

.mt-result-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
}

.mt-result-score {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}

.mt-score-main {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mt-score-num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--fg);
  line-height: 1;
}

.mt-score-out {
  font-size: 14px;
  color: var(--fg-subtle);
  font-weight: 500;
}

.mt-score-band {
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.mt-score-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mt-pillar-row {
  display: grid;
  grid-template-columns: 200px 1fr 72px;
  align-items: center;
  gap: 14px;
}

.mt-pillar-name strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

.mt-pillar-name span {
  font-size: 12px;
  color: var(--fg-subtle);
}

.mt-pillar-bar {
  height: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.mt-pillar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s ease;
}

.mt-pillar-fill.mt-pillar-ps {
  background: #4F46E5;
}

.mt-pillar-fill.mt-pillar-pp {
  background: #D97706;
}

.mt-pillar-fill.mt-pillar-pr {
  background: #2563EB;
}

.mt-pillar-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: right;
}

.mt-result-insight {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 32px;
}

.mt-result-insight h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-subtle);
  margin: 0 0 8px;
}

.mt-result-insight p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
}

/* ── Result: Gap Summary ── */
.mt-result-gaps {
  margin-bottom: 28px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}

.mt-result-gaps h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-subtle);
  margin: 0 0 14px;
}

.mt-gaps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mt-gaps-list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg);
}

/* ── Result: Reassurance ── */
.mt-result-reassurance {
  margin-bottom: 28px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mt-result-reassurance p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.mt-result-reassurance p strong {
  color: var(--fg);
  font-weight: 600;
}

/* ── Result: Lead Capture Form ── */
.mt-result-lead-form {
  margin-bottom: 20px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}

.mt-result-lead-form h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--fg);
  margin: 0 0 16px;
}

.mt-lead-capture {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mt-lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mt-lead-capture input[type="text"],
.mt-lead-capture input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.mt-lead-capture input::placeholder {
  color: var(--fg-subtle);
}

.mt-lead-capture input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ── Result: Toolkit CTA ── */
.mt-result-toolkit {
  margin-bottom: 28px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  text-align: center;
}

.mt-result-toolkit .btn {
  display: inline-block;
}

.mt-radar-container {
  margin: 40px 0;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: 12px;
  text-align: center;
}

.mt-radar-container h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}

.mt-radar {
  width: 100%;
  height: auto;
  max-width: 320px;
}

.mt-radar-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.mt-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
}

.mt-legend-box {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}

.mt-result-track {
  margin-bottom: 28px;
}

.mt-result-track .chapter-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.mt-track-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.mt-track-head {
  margin-bottom: 14px;
}

.mt-track-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: #F5F8FF;
  color: var(--accent);
  border: 1px solid #DBE6FF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.mt-track-head h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  color: var(--fg);
}

#mt-track-reason {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 20px;
}

.mt-track-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mt-result-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--fg-muted);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
}

.btn-ghost:hover {
  color: var(--fg);
}

.mt-textlink {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.mt-textlink:hover {
  text-decoration: underline;
}

/* Aside */
.mt-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.mt-aside-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.mt-aside-card.mt-aside-muted {
  background: var(--bg-alt);
}

.mt-aside-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-subtle);
  margin-bottom: 8px;
}

.mt-aside-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.mt-aside-card strong {
  color: var(--fg);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .mt-app .container {
    grid-template-columns: 1fr;
  }

  .mt-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mt-aside-card {
    flex: 1 1 260px;
  }
}

@media (max-width: 700px) {
  .mt-hero {
    padding: 72px 0 40px;
  }

  .mt-card {
    padding: 28px 22px;
  }

  .mt-result-score {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .mt-pillar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mt-pillar-val {
    text-align: left;
  }

  .mt-stage h2 {
    font-size: 22px;
  }

  .mt-q-text {
    font-size: 19px !important;
  }

  .mt-hero-meta {
    gap: 14px;
    padding: 12px 18px;
  }

  .mt-meta-sep {
    display: none;
  }

  .mt-stage-actions .btn {
    flex: 1 1 140px;
    min-width: 0;
  }

  .mt-lead-form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   LEAD MAGNET POPUP
   ═══════════════════════════════════════════════════════════ */
.lead-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lead-popup-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  overflow: hidden;
}

.lead-popup-overlay.active .lead-popup-box {
  transform: translateY(0) scale(1);
}

.lead-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--fg-muted);
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s, background 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lead-popup-close:hover {
  color: var(--fg);
  background: var(--bg-alt);
}

.lead-popup-content {
  padding: 40px 32px;
  text-align: center;
}

.lead-popup-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.lead-popup-content h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--fg);
}

.lead-popup-content p {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  background: var(--bg-alt);
  color: var(--fg);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #fff;
}

.btn-full {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 16px;
}

.lead-spam-free {
  font-size: 12px !important;
  color: var(--fg-subtle) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ============================================================
 * SURGICAL UPGRADE · Apr 2026
 * Proof Stack · Track Compare · First 2 Weeks · Lead Popup v2
 * ============================================================ */

.hero-ghost-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--fg-muted);
  font: 500 13.5px/1 var(--font);
  padding: 4px 4px;
  margin: 0 auto 16px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border-strong);
  transition: color .15s, text-decoration-color .15s;
}

.hero-ghost-cta:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* Proof Stack */
.proof-stack {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.proof-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-stack-item {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .2s, transform .2s;
}

.proof-stack-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.proof-stack-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}

.proof-stack-num span {
  color: var(--accent);
}

.proof-stack-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.proof-stack-sub {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.proof-stack-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .proof-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .proof-stack-grid {
    grid-template-columns: 1fr;
  }
}

/* Track Comparison */
.track-compare {
  margin: 48px auto 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.tc-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  border-top: 1px solid var(--border);
}

.tc-row:first-child {
  border-top: none;
}

.tc-cell {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--fg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.55;
}

.tc-cell:first-child {
  border-left: none;
}

.tc-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--fg-muted);
  background: var(--bg-alt);
}

.tc-head .tc-cell {
  padding: 20px;
  background: var(--bg-alt);
}

.tc-head .tc-cell strong {
  font-size: 16px;
  color: var(--fg);
  display: block;
}

.tc-head .tc-cell span {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-top: 2px;
}

.tc-cell-featured {
  background: linear-gradient(180deg, var(--accent-light) 0%, rgba(255, 255, 255, 0) 100%);
}

.tc-head .tc-cell-featured {
  background: var(--accent-light);
}

.tc-head .tc-cell-featured strong {
  color: var(--accent);
}

.tc-cta-row .tc-cell {
  padding: 20px;
}

.tc-cta-row .tc-cell .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .tc-row {
    grid-template-columns: 1fr;
  }

  .tc-cell {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .tc-row:first-child {
    display: none;
  }

  .tc-label {
    background: var(--bg-alt);
    font-weight: 700;
    color: var(--fg);
  }

  .tc-cell-featured {
    background: var(--accent-light);
  }
}

/* First 2 Weeks */
.first-weeks {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.first-weeks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.fw-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.fw-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.fw-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.fw-day {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.fw-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fg);
}

.fw-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fw-card ul li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.fw-card ul li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.first-weeks-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

@media (max-width: 900px) {
  .first-weeks-grid {
    grid-template-columns: 1fr;
  }
}

/* Lead Popup v2 */
body.lead-popup-open {
  overflow: hidden;
}

.lead-popup-box-v2 {
  max-width: 880px !important;
  width: calc(100vw - 32px);
  padding: 0 !important;
  overflow: hidden;
  border-radius: 20px !important;
  background: var(--surface);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .3) !important;
}

.lead-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.lead-popup-aside {
  padding: 32px 28px;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-popup-aside h3 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.4px;
  color: white;
  margin: 0;
}

.lead-popup-aside .accent-text {
  color: #93c5fd;
  -webkit-text-fill-color: #93c5fd;
}

.lead-popup-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #93c5fd;
}

.lead-popup-stack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-popup-stack li {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .88);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

.lp-tick {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(147, 197, 253, .22);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.lead-popup-trust {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 11.5px;
  color: rgba(255, 255, 255, .75);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.lead-popup-trust strong {
  color: white;
}

.lpt-avatars {
  display: inline-flex;
}

.lpt-avatars .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid #0f172a;
  margin-left: -6px;
}

.lpt-avatars .av:first-child {
  margin-left: 0;
}

.lead-popup-main {
  padding: 28px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-popup-value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.lpv {
  text-align: center;
}

.lpv-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -.3px;
}

.lpv-lbl {
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  margin-top: 2px;
}

.lead-popup-main .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-popup-main .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}

.lead-popup-main .form-hint {
  font-weight: 400;
  color: var(--fg-muted);
  font-size: 11px;
}

.lead-popup-main input,
.lead-popup-main select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: 400 14px var(--font);
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
}

.lead-popup-main input:focus,
.lead-popup-main select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.lead-popup-success {
  text-align: center;
  padding: 20px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lead-popup-success[hidden] {
  display: none !important;
}

.lead-popup-main>.lead-form[hidden],
.lead-popup-main>.lead-popup-value-row[hidden] {
  display: none !important;
}

.lead-popup-success .lps-icon {
  font-size: 32px;
}

.lead-popup-success h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.lead-popup-success p {
  font-size: 13.5px;
  color: var(--fg-muted);
  margin: 0;
  max-width: 340px;
  line-height: 1.5;
}

.lead-popup-success .btn {
  margin-top: 8px;
}

@media (max-width: 820px) {
  .lead-popup-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lead-popup-aside {
    padding: 28px 24px;
  }

  .lead-popup-aside h3 {
    font-size: 20px;
  }

  .lead-popup-main {
    padding: 24px 22px;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   PM4U ENGLISH — Communication Mastery Learning Hub
   ══════════════════════════════════════════════════════════════════════ */

.pm4u-english-hero {
  padding: 0 0 32px;
  text-align: center;
}

.pm4u-english-hero h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin: 0 0 8px;
  line-height: 1.2;
}

.pm4u-english-hero p {
  font-size: 16px;
  color: var(--fg-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}

.pm4u-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.pm4u-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.pm4u-stat-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.pm4u-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.pm4u-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Backwards-compatible selectors matching HTML classes in profile.html */
.pm4u-english-hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.pm4u-english-hero-stats .pm4u-stat,
.pm4u-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  font-weight: 700;
  color: var(--fg);
}

.pm4u-english-hero-stats .pm4u-stat:hover,
.pm4u-stat:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

/* search bar wrapper used in HTML */
.pm4u-english-search-bar {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 12px;
  margin-bottom: 16px;
}

/* modal alias */
.pm4u-english-email-modal {
  /* reuse modal styles */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.pm4u-english-email-modal.show {
  display: flex;
}

/* meeting cards alias */
.pm4u-english-meeting-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pm4u-english-meeting-cards .pm4u-english-meeting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

/* automotive glossary container alias */
.pm4u-english-automotive-glossary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* AI coach textarea alias */
.pm4u-ai-coach-textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-alt);
  color: var(--fg);
  resize: vertical;
  min-height: 100px;
}

/* phrasebook container alias */
.pm4u-english-phrasebook {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

/* ── Tracks/Learning Path Grid ── */
.pm4u-english-section {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.pm4u-english-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.pm4u-english-tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pm4u-english-track-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pm4u-english-track-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}

.pm4u-track-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.pm4u-track-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.3;
}

.pm4u-track-diff {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.pm4u-track-meta {
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Sentence Library ── */
.pm4u-english-sentence-library {
  margin-top: 16px;
}

.pm4u-lib-controls {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 12px;
  margin-bottom: 16px;
}

.pm4u-search-input,
.pm4u-filter-select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--surface);
  color: var(--fg);
  transition: border-color 0.2s;
}

.pm4u-search-input:focus,
.pm4u-filter-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.pm4u-sentences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 600px;
  overflow-y: auto;
  padding: 8px 4px;
}

.pm4u-english-sentence-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.pm4u-english-sentence-card:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}

.pm4u-sentence-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pm4u-sentence-en {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.4;
}

.pm4u-sentence-vi {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  line-height: 1.4;
  font-style: italic;
}

.pm4u-sentence-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.pm4u-btn-small,
.pm4u-btn-secondary,
.pm4u-btn-primary {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.pm4u-btn-small {
  background: var(--bg-alt);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.pm4u-btn-small:hover {
  background: var(--surface-hover);
  color: var(--fg);
}

.pm4u-btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.pm4u-btn-secondary:hover {
  background: var(--accent-light);
}

.pm4u-btn-primary {
  background: var(--accent);
  color: white;
}

.pm4u-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* ── Email Practice Studio ── */
.pm4u-english-email-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pm4u-email-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pm4u-email-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pm4u-email-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.pm4u-email-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.pm4u-email-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Email Modal */
.pm4u-email-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.pm4u-email-modal.show {
  display: flex;
}

.pm4u-email-modal-content {
  background: var(--surface);
  border-radius: 14px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
}

.pm4u-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pm4u-modal-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.pm4u-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm4u-modal-close:hover {
  color: var(--fg);
}

.pm4u-modal-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pm4u-email-comparison {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm4u-email-version {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.pm4u-email-version.weak {
  background: #fef2f2;
  border-color: #fecaca;
}

.pm4u-email-version.pro {
  background: #f0fdf4;
  border-color: #86efac;
}

.pm4u-version-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pm4u-email-version.weak .pm4u-version-label {
  color: #dc2626;
}

.pm4u-email-version.pro .pm4u-version-label {
  color: #16a34a;
}

.pm4u-email-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg);
  font-family: 'JetBrains Mono', monospace;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ── Meeting Simulation ── */
.pm4u-english-meeting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pm4u-english-meeting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
}

.pm4u-english-meeting-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.pm4u-meeting-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.pm4u-meeting-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.pm4u-meeting-phrases {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pm4u-phrase-chip {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--fg-muted);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font-weight: 500;
}

/* ── Automotive Glossary ── */
.pm4u-glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pm4u-glossary-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}

.pm4u-glossary-item:hover {
  border-color: var(--border-strong);
}

.pm4u-glossary-term {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm4u-glossary-term em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.pm4u-glossary-def {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* ── AI Coach ── */
.pm4u-ai-coach-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 14px;
}

.pm4u-ai-coach-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm4u-ai-coach-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
}

.pm4u-ai-coach-input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-alt);
  color: var(--fg);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s;
}

.pm4u-ai-coach-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.pm4u-ai-coach-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm4u-ai-coach-action {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s;
}

.pm4u-ai-coach-action:focus {
  outline: none;
  border-color: var(--accent);
}

.pm4u-ai-coach-button {
  padding: 10px 14px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.pm4u-ai-coach-button:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pm4u-ai-coach-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pm4u-ai-coach-output {
  margin-top: 12px;
  min-height: 60px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg);
  max-height: 300px;
  overflow-y: auto;
  font-family: 'JetBrains Mono', monospace;
}

/* ── My Phrasebook ── */
.pm4u-phrasebook-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.pm4u-phrasebook-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
}

.pm4u-phrasebook-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.pm4u-phrasebook-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  flex-grow: 1;
}

.pm4u-phrasebook-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.pm4u-phrasebook-remove {
  padding: 6px 10px;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.pm4u-phrasebook-remove:hover {
  background: #dc2626;
  color: white;
}

.pm4u-phrasebook-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 24px;
  color: var(--fg-muted);
  font-size: 14px;
}

/* ── Responsive Design ── */
@media (max-width: 1200px) {
  .pm4u-english-tracks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm4u-english-email-scenarios {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm4u-modal-body {
    grid-template-columns: 1fr;
  }

  .pm4u-english-meeting-grid {
    grid-template-columns: 1fr;
  }

  .pm4u-glossary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pm4u-english-hero h1 {
    font-size: 24px;
  }

  .pm4u-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm4u-english-tracks-grid {
    grid-template-columns: 1fr;
  }

  .pm4u-english-email-scenarios {
    grid-template-columns: 1fr;
  }

  .pm4u-english-sentence-card {
    padding: 12px 14px;
  }

  .pm4u-ai-coach-panel {
    grid-template-columns: 1fr;
  }

  .pm4u-phrasebook-container {
    grid-template-columns: 1fr;
  }

  .pm4u-lib-controls {
    grid-template-columns: 1fr;
  }
}

/* ---------- High-specificity overrides for PM4U English display fixes ---------- */
/* Use ID selectors to ensure these styles override other generic h1 rules */
#sec-pm4u-english {
  padding: 32px 48px;
}

#sec-pm4u-english .pm4u-english-hero {
  max-width: 1100px;
  margin: 0 auto 6px auto;
  text-align: left;
  padding-bottom: 8px;
}

#sec-pm4u-english .pm4u-english-hero h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 6px;
  color: var(--fg);
}

/* Ensure subtitle has correct weight/size */
#sec-pm4u-english .pm4u-english-hero p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

/* Make hero stats a vertical list that looks close to design */
#sec-pm4u-english .pm4u-english-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

#sec-pm4u-english .pm4u-english-hero-stats .pm4u-stat,
#sec-pm4u-english .pm4u-stat {
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  color: var(--fg-muted);
  font-weight: 600;
}

/* Narrow the main content column so text doesn't run too wide */
#sec-pm4u-english .pm4u-english-section {
  max-width: 980px;
  margin: 8px 0 18px 0;
}

/* Search bar inline alignment */
#sec-pm4u-english .pm4u-english-search-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}

#sec-pm4u-english .pm4u-search-input {
  flex: 1 1 auto;
}

/* Ensure modal uses top-level modal styles if shown */
#sec-pm4u-english .pm4u-english-email-modal,
#sec-pm4u-english .pm4u-email-modal {
  display: none;
}

/* final small-screen adjustment */
@media (max-width: 768px) {
  #sec-pm4u-english {
    padding: 20px 18px;
  }

  #sec-pm4u-english .pm4u-english-hero h1 {
    font-size: 26px;
  }
}

.wp-shot {
  transition: border-color 0.15s,
  transform 0.2s;
}

.wp-shot:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.wp-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #0f172a;
}

.wp-shot figcaption {
  padding: 14px 16px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* Workshop Gallery Grid */
.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.wp-shot {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color .15s, transform .2s;
}

.workshop-connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.wc-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
}

.wc-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 8px;
}

.wc-col p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg);
}

@media (max-width: 900px) {
  .workshop-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .workshop-connect {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .workshop-proof {
    padding: 64px 0 72px;
  }

  .workshop-gallery {
    gap: 12px;
    margin-bottom: 36px;
  }

  .wp-shot figcaption {
    font-size: 12.5px;
    padding: 12px 14px 14px;
  }
}

/* Hero reference to workshop */
.hero-workshop-ref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px auto 0;
  padding: 6px 12px;
  font-size: 12.5px;
  color: var(--fg-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  transition: border-color .15s, color .15s;
}

.hero-workshop-ref:hover {
  border-color: var(--border-strong);
  color: var(--fg);
}

.hero-workshop-ref strong {
  color: var(--fg);
  font-weight: 600;
}

.hwr-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .18);
}

/* Founder validation reference */
.founder-mini-validation {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.founder-mini-validation strong {
  color: var(--fg);
}

.founder-mini-validation a {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.founder-mini-validation a:hover {
  text-decoration: underline;
}

/* ============================================================
 * WORKSHOP VIDEO — Real footage
 * ============================================================ */
.workshop-video {
  padding: 88px 0 72px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.workshop-video-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.workshop-video-head .section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.workshop-video-head .section-title {
  margin: 0 0 14px;
}

.workshop-video-head .section-desc {
  margin: 0;
}

.video-wrapper {
  max-width: 880px;
  margin: 0 auto;
  background: #0f172a;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f172a;
}

.video-caption {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.video-caption strong {
  color: var(--fg);
  font-weight: 600;
}

.workshop-cta {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
}

.workshop-cta a {
  display: inline;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.workshop-cta a:hover {
  color: var(--accent-hover);
}

@media (max-width: 640px) {
  .workshop-video {
    padding: 64px 0 56px;
  }

  .workshop-video-head {
    margin-bottom: 28px;
  }

  .video-wrapper {
    border-radius: 10px;
  }
}

/* ============================================================
 * WORKSHOP FEEDBACK — real quotes, no polish
 * ============================================================ */
.workshop-feedback {
  padding: 96px 0 88px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.workshop-feedback .section-header {
  margin-bottom: 48px;
}

.workshop-feedback .section-desc a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.workshop-feedback .section-desc a:hover {
  text-decoration: underline;
}

.wf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.wf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s, transform .2s;
}

.wf-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.wf-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}

.wf-card-need {
  background: var(--bg-alt);
  border-style: dashed;
}

.wf-tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
}

.wf-card-featured .wf-tag {
  color: var(--accent);
}

.wf-card-need .wf-tag {
  color: #b45309;
}

.wf-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -.2px;
}

.wf-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

.wf-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.wf-quote {
  margin: 0;
  padding: 20px 22px;
  background: var(--bg-alt);
  border-left: 3px solid var(--border-strong);
  border-radius: 0 8px 8px 0;
}

.wf-quote blockquote {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
}

.wf-quote figcaption {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}

.wf-foot {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fg-subtle, #9CA3AF);
  font-style: italic;
}

@media (max-width: 960px) {
  .wf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wf-quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .workshop-feedback {
    padding: 64px 0 56px;
  }

  .wf-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
}

/* ─────────────────────────────────────────────
   FINAL CONVERSION PASS — hero hook + AI so-what
   ───────────────────────────────────────────── */
.hero-hook {
  margin: 20px auto 16px;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--fg, #111827);
  letter-spacing: -0.2px;
  padding: 14px 22px;
  border-left: 3px solid var(--accent, #2563EB);
  background: #F9FAFB;
  border-radius: 6px;
  text-align: left;
}

.hero-hook br {
  display: block;
  content: "";
  margin-top: 4px;
}

@media (max-width: 640px) {
  .hero-hook {
    font-size: 16.5px;
    padding: 12px 16px;
    margin: 16px auto 14px;
  }
}

.ai-so-what {
  margin: 32px auto 0;
  max-width: 720px;
  padding: 24px 28px;
  border: 1px solid var(--border-strong, #D1D5DB);
  border-radius: 12px;
  background: #FFFFFF;
  text-align: center;
}

.ai-so-what p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg, #111827);
}

.ai-so-what strong {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 6px;
  color: var(--fg, #111827);
}

@media (max-width: 640px) {
  .ai-so-what {
    padding: 20px 18px;
    margin-top: 24px;
  }

  .ai-so-what strong {
    font-size: 16.5px;
  }

  .ai-so-what p {
    font-size: 15px;
  }
}

/* ─────────────────────────────────────────────
   COMING SOON — Practitioner + Mastery
   Same pill system as .course-badge for consistency
   ───────────────────────────────────────────── */
.course-card-soon {
  position: relative;
  background: #FAFAFB;
  border-style: dashed;
  border-color: var(--border-strong, #D1D5DB);
  opacity: 0.96;
}

.course-card-soon .course-title,
.course-card-soon .course-level,
.course-card-soon .course-promise,
.course-card-soon .course-desc,
.course-card-soon .course-outcomes,
.course-card-soon .course-meta {
  filter: grayscale(0.15);
}

/* Match .course-badge floating-pill style, but in a muted "soon" tone */
.course-soon-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #6B7280;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full, 999px);
  white-space: nowrap;
}

.course-soon-note {
  margin: 14px 0 16px;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px dashed var(--border-strong, #D1D5DB);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted, #6B7280);
}

/* Track compare — coming soon cell */
.tc-cell-soon {
  color: var(--fg-muted, #6B7280);
  background: #FAFAFB;
}

.tc-cell-soon strong {
  color: var(--fg, #111827);
}

.tc-cell-soon span {
  color: var(--fg-muted, #6B7280);
  font-weight: 600;
}

/* Persona — coming soon */
.persona-card-soon {
  background: #FAFAFB;
  border-style: dashed;
}

.persona-card-soon .persona-rec {
  flex-wrap: wrap;
  gap: 8px;
}

.persona-card-soon .persona-rec-label {
  display: inline-block;
  color: #FFFFFF;
  background: #6B7280;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.6px;
  white-space: nowrap;
  border: none;
}

/* Contact — intent banner */
.intent-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  margin: 0 0 24px;
  border: 1px solid #BFDBFE;
  background: #EFF6FF;
  border-radius: 10px;
}

.intent-banner-soon {
  border-color: #FCD34D;
  background: #FFFBEB;
}

.intent-banner-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 16px;
  font-weight: 700;
}

.intent-banner-soon .intent-banner-icon {
  border-color: #FCD34D;
  color: #92400E;
}

.intent-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg, #111827);
  margin-bottom: 3px;
  line-height: 1.3;
}

.intent-banner-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted, #6B7280);
}

/* ══════════════════════════════════════════════════════ */
/* BEGINNER ROADMAP — SaaS visual timeline                */
/* ══════════════════════════════════════════════════════ */
.roadmap-timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 0 8px 28px;
  position: relative;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom, #E5E7EB 0%, #E5E7EB 95%, transparent 100%);
}

.roadmap-phase {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px 26px;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.roadmap-phase:last-child {
  margin-bottom: 0;
}

.roadmap-phase:hover {
  border-color: #D1D5DB;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.06);
  transform: translateY(-1px);
}

.roadmap-phase .phase-dot {
  position: absolute;
  left: -28px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #2563EB;
  box-shadow: 0 0 0 4px #FFFFFF;
}

.roadmap-phase .phase-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.roadmap-phase .phase-tag {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #2563EB;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 6px;
  padding: 3px 8px;
}

.roadmap-phase .phase-week {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.roadmap-phase .phase-header h3 {
  flex-basis: 100%;
  margin: 4px 0 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #111827;
  line-height: 1.3;
}

.phase-learnings {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
}

.phase-learnings li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #374151;
}

.phase-learnings li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9CA3AF;
}

.phase-outcome {
  margin: 0 0 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #111827;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-left: 3px solid #10B981;
  border-radius: 0 8px 8px 0;
}

.phase-outcome strong {
  color: #047857;
}

.phase-ai {
  margin: 0;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4B5563;
  background: #F5F3FF;
  border: 1px solid #EDE9FE;
  border-left: 3px solid #8B5CF6;
  border-radius: 0 8px 8px 0;
}

.phase-ai strong {
  color: #6D28D9;
}

@media (max-width: 640px) {
  .roadmap-timeline {
    padding-left: 22px;
  }

  .roadmap-phase {
    padding: 20px;
    border-radius: 12px;
  }

  .roadmap-phase .phase-dot {
    left: -22px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .roadmap-phase .phase-header h3 {
    font-size: 17px;
  }

  .phase-learnings li {
    font-size: 14px;
  }
}

/* ════════════════════════════════════════════════
   AUTH MODAL
   ════════════════════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

.auth-overlay.visible {
  opacity: 1;
}

.auth-overlay.auth-hidden {
  display: none;
}

.auth-modal {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.18);
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 17px;
  line-height: 1;
  color: #6B7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.auth-modal-close:hover {
  background: #F3F4F6;
  color: #111827;
}

.auth-modal-logo {
  text-align: center;
  margin-bottom: 20px;
}

.auth-modal-logo img {
  height: 32px;
  width: auto;
}

.auth-tabs {
  display: flex;
  background: #F3F4F6;
  border-radius: 10px;
  padding: 3px;
  margin-bottom: 20px;
  gap: 2px;
}

.auth-tab {
  flex: 1;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.auth-tab.active {
  background: #FFFFFF;
  color: #111827;
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.1);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #FFFFFF;
  color: #111827;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-form input::placeholder {
  color: #9CA3AF;
}

.auth-form input:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.auth-error {
  font-size: 13px;
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 8px 12px;
}

.auth-btn-primary {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  background: #2563EB;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 4px;
  font-family: inherit;
}

.auth-btn-primary:hover:not(:disabled) {
  background: #1D4ED8;
}

.auth-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 13px;
  color: #9CA3AF;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}

.auth-btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.auth-btn-google:hover:not(:disabled) {
  background: #F9FAFB;
}

.auth-btn-google:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.auth-legal {
  text-align: center;
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 14px;
  line-height: 1.55;
}

.auth-legal a {
  color: #6B7280;
  text-decoration: none;
}

.auth-legal a:hover {
  color: #2563EB;
}

/* ── Nav: login button & user state ── */
.nav-auth-btn {
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  background: transparent;
  border: none;
  padding: 7px 12px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  font-family: inherit;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-auth-btn:hover {
  color: #2563EB;
  background: #F3F4F6;
}

.nav-profile {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding: 4px 14px 4px 4px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-profile-btn:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-username {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Profile Dropdown Menu */
#nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14), 0 3px 10px rgba(15, 23, 42, 0.08);
  min-width: 260px;
  width: 260px;
  padding: 8px;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  overflow: hidden;
}

.account-pill.open #nav-dropdown,
#nav-dropdown.show,
#nav-profile-btn[aria-expanded="true"]~#nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  width: 100%;
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: #F9FAFB;
  color: var(--fg);
}

.nav-dropdown-item:active {
  background: #F3F4F6;
}

.nav-dropdown-user {
  padding: 12px 16px;
}

.nav-dropdown-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-dropdown-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 2px;
}

.nav-dropdown-email {
  font-size: 12px;
  color: var(--fg-muted);
}

.nav-dropdown-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 8px 0;
}

.nav-logout-btn {
  color: #9CA3AF;
  font-size: 13px;
  font-weight: 500;
}

.nav-logout-btn:hover {
  color: #DC2626;
  background: #FEF2F2;
}

@media (max-width: 1150px) {
  .nav-username {
    display: none;
  }

  .nav-profile-btn {
    padding: 4px;
  }
}

@media (max-width: 768px) {
  .nav-auth-btn {
    display: none;
  }

  .nav-username {
    display: none;
  }

  .nav-profile-btn {
    gap: 0;
    padding: 4px;
  }

  #nav-dropdown {
    min-width: 240px;
  }
}

/* ── SOCIAL PROOF POPUP (FOMO) ── */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  transform: translateY(150%);
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  max-width: 400px;
}

.social-proof-toast.active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .social-proof-toast {
    bottom: 100px;
    /* Above the sticky CTA bar on mobile */
    left: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
    width: auto;
  }
}

.sp-icon {
  width: 32px;
  height: 32px;
  background: #ECFDF5;
  color: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sp-content {
  font-size: 14px;
  color: #1F2937;
  line-height: 1.4;
}

.sp-content strong {
  color: #2563EB;
  font-weight: 600;
}

.sp-time {
  font-size: 11px;
  color: #9CA3AF;
  display: block;
}

/* ── CTA STRIPS ── */
.cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  margin: 64px 0;
}

.cta-strip-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-strip-content p {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin: 0;
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 640px) {
  .cta-strip {
    padding: 32px 0;
    margin: 48px 0;
  }

  .cta-strip-content p {
    font-size: 18px;
  }

  .cta-strip-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip-actions .btn {
    width: 100%;
  }
}

/* ── FOUNDER-LED TRAINING BLOCK ── */
.founder-led-block {
  padding: 80px 0;
  background: var(--surface);
}

.founder-led-grid {
  margin-bottom: 48px;
}

.founder-led-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.founder-led-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.founder-led-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.founder-led-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.founder-led-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  margin: 0;
}

.founder-led-cta {
  display: inline-block;
}

@media (max-width: 768px) {
  .founder-led-block {
    padding: 60px 0;
  }

  .founder-led-item {
    padding: 24px;
  }

  .founder-led-icon {
    font-size: 40px;
  }
}

/* ── OUTCOMES SECTION ── */
.outcomes-section {
  padding: 80px 0;
  background: var(--bg);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.outcome-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.outcome-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.outcome-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  margin-top: 0;
}

.outcome-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .outcomes-section {
    padding: 60px 0;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .outcome-card {
    padding: 24px 16px;
  }

  .outcome-icon {
    font-size: 32px;
  }

  .outcome-card h3 {
    font-size: 14px;
  }

  .outcome-card p {
    font-size: 13px;
  }
}

/* ════════════════════════════════════════════════════════ */
/* CRO v2 — New Components & Styles */
/* ════════════════════════════════════════════════════════ */

/* Hero Hook */
.hero-hook {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.6;
  font-weight: 500;
}

/* Cost of Inaction Section */
.cost-section {
  padding: 64px 0;
  background: #FEF3C7;
  border-top: 1px solid #FDE68A;
  border-bottom: 1px solid #FDE68A;
}

.cost-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #92400E;
  letter-spacing: -0.6px;
}

.cost-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
}

.cost-section li {
  font-size: 16px;
  color: #78350F;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.cost-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #D97706;
  font-weight: 700;
}

/* Workshop Gallery Toggle */
.toggle-gallery {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 500;
  transition: background-color 0.15s, color 0.15s;
}

.toggle-gallery:hover {
  background: var(--surface-hover);
  color: var(--fg);
}

.workshop-gallery.collapsed {
  display: none;
}

/* Course Decision Trigger */
.course-decision {
  margin: 16px 0;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.course-decision strong {
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  color: var(--fg);
  font-weight: 600;
}

.course-decision ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-decision li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 0;
  padding-left: 20px;
  position: relative;
}

.course-decision li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Course Micro Social Proof */
.course-proof {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.course-proof span {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Text Link for Converted CTAs */
.text-link {
  color: var(--accent);
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
}

.text-link:hover {
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════ */
/* CRO OPTIMIZATION — NEW FUNNEL ELEMENTS               */
/* ══════════════════════════════════════════════════════ */

/* PHASE 1: Hero Fast Result */
.hero-fast-result {
  max-width: 760px;
  margin: 12px auto 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.5;
  text-align: center;
}

.hero-specific {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.6;
  text-align: center;
}

.hero-micro-trust {
  max-width: 760px;
  margin: 12px auto 24px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
}

/* PHASE 2: Entry Paths */
.entry-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  padding: 0 16px;
}

.entry-item {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  background: var(--surface);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  display: inline-block;
}

.entry-item:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
}

@media (max-width: 640px) {
  .entry-paths {
    gap: 8px;
    margin-top: 24px;
  }

  .entry-item {
    padding: 9px 14px;
    font-size: 13px;
  }
}

/* PHASE 3: Why Now */
.why-now {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 12px 20px;
  margin-top: 16px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .why-now {
    font-size: 14px;
    padding: 10px 14px;
    margin-top: 12px;
  }
}

/* PHASE 4: Sticky CTA (mobile-only dual button bar) */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  z-index: 900;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.sticky-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.sticky-cta a:active {
  transform: scale(0.98);
}

.sticky-cta .btn-primary {
  background: var(--accent);
  color: white;
}

.sticky-cta .btn-soft {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 74px;
    /* Prevent footer/content from being hidden by sticky CTA */
  }
}

/* PHASE 6: Course Speed Badge */
.course-speed {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: #EFF6FF;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 12px 0;
  line-height: 1.4;
}

/* ── 2FA MODAL STYLES ── */
.modal-2fa {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-2fa.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-2fa-content {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
}

.modal-2fa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.modal-2fa-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.modal-2fa-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}

.modal-2fa-close:hover {
  color: var(--fg);
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 12px;
}

.step-indicator-item {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: background 0.25s;
}

.step-indicator-item.active {
  background: var(--accent);
}

.step-indicator-item.completed {
  background: #10b981;
}

.step-number {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
}

.qr-wrapper {
  text-align: center;
  margin-bottom: 28px;
}

.qr-code-container {
  display: inline-block;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  width: 240px;
  height: 240px;
}

.qr-code-container img,
.qr-code-container svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.qr-code-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.secret-display {
  background: #f3f4f6;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  margin-top: 16px;
  word-break: break-all;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 12px;
  color: var(--fg);
}

.secret-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 6px;
  display: block;
}

.totp-input {
  font-size: 32px;
  font-weight: 600;
  font-family: 'Monaco', 'Menlo', monospace;
  text-align: center;
  letter-spacing: 8px;
  padding: 16px 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s;
  margin-bottom: 20px;
}

.totp-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.totp-input::placeholder {
  color: var(--fg-subtle);
  letter-spacing: 8px;
}

.modal-button-group {
  display: flex;
  gap: 12px;
}

.modal-button {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.modal-button-primary {
  background: var(--accent);
  color: white;
}

.modal-button-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ══════════════════════════════════════════════════════ */
/* BONUSES SECTION — Quà tặng khi tham gia                */
/* ══════════════════════════════════════════════════════ */

.bonuses-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #f5fafe 100%);
  position: relative;
}

.bonuses-section .section-header {
  margin-bottom: 60px;
}

.bonuses-section .section-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout — 4 columns on desktop, 2 on tablet, 1 on mobile */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Bonus Card */
.bonus-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3B82F6, #06B6D4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-card:hover {
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -8px rgba(15, 23, 42, 0.14), 0 0 0 1px #3B82F6;
}

.bonus-card:hover::before {
  transform: scaleX(1);
}

/* Gradient Variants */
.bonus-card--ai::before {
  background: linear-gradient(90deg, #8B5CF6, #6366F1);
}

.bonus-card--ai:hover {
  box-shadow: 0 20px 48px -8px rgba(139, 92, 246, 0.2), 0 0 0 1px #8B5CF6;
}

.bonus-card--blue::before {
  background: linear-gradient(90deg, #2563EB, #3B82F6);
}

.bonus-card--blue:hover {
  box-shadow: 0 20px 48px -8px rgba(37, 99, 235, 0.2), 0 0 0 1px #2563EB;
}

.bonus-card--teal::before {
  background: linear-gradient(90deg, #06B6D4, #14B8A6);
}

.bonus-card--teal:hover {
  box-shadow: 0 20px 48px -8px rgba(6, 182, 212, 0.2), 0 0 0 1px #06B6D4;
}

.bonus-card--purple::before {
  background: linear-gradient(90deg, #7C3AED, #A855F7);
}

.bonus-card--purple:hover {
  box-shadow: 0 20px 48px -8px rgba(124, 58, 237, 0.2), 0 0 0 1px #7C3AED;
}

.bonus-card--orange::before {
  background: linear-gradient(90deg, #EA580C, #F97316);
}

.bonus-card--orange:hover {
  box-shadow: 0 20px 48px -8px rgba(234, 88, 12, 0.2), 0 0 0 1px #EA580C;
}

.bonus-card--green::before {
  background: linear-gradient(90deg, #10B981, #34D399);
}

.bonus-card--green:hover {
  box-shadow: 0 20px 48px -8px rgba(16, 185, 129, 0.2), 0 0 0 1px #10B981;
}

.bonus-card--pink::before {
  background: linear-gradient(90deg, #EC4899, #F43F5E);
}

.bonus-card--pink:hover {
  box-shadow: 0 20px 48px -8px rgba(236, 72, 153, 0.2), 0 0 0 1px #EC4899;
}

/* Card Icon */
.bonus-icon {
  font-size: 40px;
  line-height: 1;
}

/* Card Content */
.bonus-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.bonus-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
  margin: 0;
}

.bonus-content p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* Highlight Price */
.bonus-highlight {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #EA580C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Bonuses Footer */
.bonuses-footer {
  background: linear-gradient(135deg, #0D1B3E 0%, #1E3A8A 35%, #2563EB 65%, #7C3AED 100%);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  color: white;
}

.bonuses-footer p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.bonuses-footer p:first-child {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.bonuses-footer p:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .bonuses-section {
    padding: 60px 0;
  }

  .bonuses-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 16px;
  }

  .bonus-card {
    padding: 24px 20px;
  }

  .bonus-icon {
    font-size: 32px;
  }

  .bonus-content h3 {
    font-size: 15px;
  }

  .bonuses-footer {
    padding: 24px;
  }

  .bonuses-footer p:first-child {
    font-size: 16px;
  }
}

.modal-button-primary:active {
  transform: scale(0.98);
}

.modal-button-secondary {
  background: var(--surface-hover);
  color: var(--fg);
  border: 1px solid var(--border);
}

.modal-button-secondary:hover {
  background: #e5e7eb;
}

.modal-error {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.modal-error.show {
  display: block;
}

.modal-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.modal-success.show {
  display: block;
}

.modal-description {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* 2FA Card Styles in Profile */
.profile-2fa-disabled {
  padding: 20px;
}

.profile-2fa-disabled p {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0 0 16px 0;
}

.profile-2fa-enabled {
  padding: 20px;
  display: none;
}

.profile-2fa-enabled.show {
  display: block;
}

.profile-2fa-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #10b981;
  margin-bottom: 16px;
}

.profile-2fa-status::before {
  content: '✓';
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 768px) {
  .modal-2fa {
    padding: 12px;
  }

  .modal-2fa-content {
    padding: 24px;
    max-width: none;
    width: 100%;
  }

  .modal-2fa-header {
    margin-bottom: 20px;
  }

  .modal-2fa-title {
    font-size: 18px;
  }

  .qr-code-container img {
    width: 200px;
    height: 200px;
  }

  .totp-input {
    font-size: 24px;
    letter-spacing: 6px;
    padding: 12px 8px;
    margin-bottom: 16px;
  }

  .totp-input::placeholder {
    letter-spacing: 6px;
  }

  .modal-button-group {
    flex-direction: column;
  }

  .modal-button {
    width: 100%;
  }
}

/* ── LOGIN ACTIVITY ── */
.login-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.login-activity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.login-activity-icon {
  font-size: 22px;
  width: 36px;
  height: 36px;
  background: var(--surface-hover);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-activity-info {
  flex: 1;
  min-width: 0;
}

.login-activity-meta {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.login-activity-browser {
  color: var(--fg);
}

.login-activity-device {
  color: var(--fg-muted);
}

.login-activity-badge {
  display: inline-block;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.login-activity-location {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 2px;
}

.login-activity-time {
  font-size: 12px;
  color: var(--fg-subtle);
}

/* ── DISCOUNT CODE BADGES ── */
.discount-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
}

.discount-badge-active {
  background: #DCFCE7;
  color: #15803D;
}

.discount-badge-inactive {
  background: #F3F4F6;
  color: #6B7280;
}

.discount-badge-expired {
  background: #FEE2E2;
  color: #DC2626;
}

/* ==========================================================================
   PM4U SAAS 10/10 POLISH (APPENDED)
   ========================================================================== */

/* 4. CONSISTENT SPACING & 9. SCROLL BEHAVIOR */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
  padding: 72px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }
}

/* 7. TYPOGRAPHY POLISH */
h1 {
  font-size: 48px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }
}

/* 5. CARD UI STANDARDIZATION */
.outcome-card,
.feature-card,
.how-card,
.wf-card,
.course-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s ease-in-out;
}

.outcome-card:hover,
.feature-card:hover,
.how-card:hover,
.wf-card:hover,
.course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* 6. BUTTON SYSTEM POLISH */
.btn-primary {
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-soft {
  background: var(--surface-hover);
  transition: background 0.15s;
}

.btn-soft:hover {
  background: #e2e8f0;
}

.btn-outline:hover {
  background: var(--surface);
}

@media (max-width: 768px) {

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }
}

/* 3. CLEAN INLINE CLASSES */
.warning-block {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 48px 40px;
  background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
  border: 1.5px solid #FCA5A5;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.08);
  transition: all 0.3s ease;
}

.warning-block:hover {
  border-color: #F87171;
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.12);
}

.warning-block p {
  color: #7F1D1D;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: -0.3px;
}

.founder-proof-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-proof-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}

/* 2. HERO MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero-proof-chips {
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .entry-paths {
    display: none;
    /* Hide on mobile to keep hero short */
  }
}

/* 8. GRID RESPONSIVE FIXES */
@media (max-width: 640px) {
  .workshop-gallery {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {

  .outcomes-grid,
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1. MOBILE STICKY CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: 8px;
  padding: 12px;
  background: white;
  border-top: 1px solid var(--border);
  z-index: 999;
}

.mobile-sticky-cta .btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .mobile-sticky-cta.show {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  /* hide the old sticky-cta */
  .sticky-cta {
    display: none !important;
  }
}


.courses-grid {
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .courses-grid {
    padding: 0 16px;
  }
}

/* ==========================================================================
   LEARNING PATH TIMELINE
   ========================================================================== */
.learning-path-wrapper {
  margin-top: 64px;
}

.learning-path-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 24px;
}

.timeline-steps {
  display: flex;
  flex-direction: row;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-step.active {
  background: rgba(37, 99, 235, 0.03);
  border-top: 4px solid var(--primary);
  border-color: rgba(37, 99, 235, 0.2);
}

.timeline-step.soon {
  opacity: 0.7;
  background: #fcfcfc;
}

.timeline-step .step-num {
  font-weight: 800;
  font-size: 20px;
  color: var(--fg-muted);
  opacity: 0.3;
}

.timeline-step.active .step-num {
  color: var(--primary);
  opacity: 1;
}

.timeline-step .step-content h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}

.timeline-step .step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
}

.timeline-step .step-status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--surface);
  color: var(--fg-muted);
  margin-top: auto;
}

.timeline-step.active .step-status {
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

@media (max-width: 900px) {
  .timeline-steps {
    flex-direction: column;
    max-width: 500px;
  }

  .timeline-step {
    flex-direction: row;
    align-items: center;
  }

  .timeline-step .step-status {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .timeline-step {
    padding: 16px;
    gap: 12px;
  }

  .timeline-step .step-num {
    font-size: 16px;
  }
}

/* ==========================================================================
   OFFER SECTION OPTIMIZATION (10/10 CONVERSION)
   ========================================================================== */
.offer-first-weeks {
  background: var(--surface);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.offer-first-weeks h4 {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: var(--fg);
  font-weight: 700;
}

.offer-first-weeks ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.offer-first-weeks li {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}

.offer-first-weeks li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.offer-note {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.cta-sub {
  font-size: 13px;
  margin-top: 8px;
  color: var(--fg-muted);
  font-weight: 500;
}

.offer-proof {
  margin-top: 16px;
  font-size: 14px;
  color: var(--fg);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.offer-proof p {
  margin: 0 0 6px 0;
  color: var(--fg-muted);
}

.offer-risk {
  margin-top: 12px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  background: rgba(37, 99, 235, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
}

/* ==========================================================================
   SINGLE OFFER PANEL (PROFESSIONAL SAAS OPTIMIZED)
   ========================================================================== */
.offer-shell {
  background: #F8FAFC;
  border-radius: 32px;
  padding: 40px;
  margin-bottom: 80px;
}

.single-offer-panel {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  align-items: start;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 16px;
}

.offer-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  margin: -8px 0 0 0;
}

.offer-subcopy {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.offer-promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-promise .promise-tag {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-promise .promise-tag::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--primary);
}

.offer-promise ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.offer-promise li {
  font-size: 15px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-promise li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

.offer-value-box {
  background: #F1F5F9;
  padding: 20px;
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}

.offer-value-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}

.offer-outcomes-container h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-outcomes-grid li {
  font-size: 14px;
  color: #475569;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.offer-outcomes-grid li span.check-icon {
  color: #10B981;
  flex-shrink: 0;
}

.offer-first-weeks {
  background: #F8FAFC;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}

.offer-first-weeks h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #0F172A;
}

.offer-mini-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-badge {
  width: 22px;
  height: 22px;
  background: white;
  border: 1px solid #E2E8F0;
  color: #64748B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.mini-step .step-label {
  font-weight: 700;
  color: #334155;
  font-size: 13px;
  white-space: nowrap;
}

.mini-step .step-text {
  font-size: 13px;
  color: #64748B;
}

/* PRICING BOX */
.offer-pricing-box {
  position: sticky;
  top: 120px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.offer-price {
  font-size: 40px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.offer-price-note {
  font-size: 13px;
  font-weight: 600;
  color: #EF4444;
  margin-bottom: 24px;
}

.btn.offer-cta {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--accent) !important;
  /* Force visible on white background */
  border: 2px solid var(--accent);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  overflow: hidden;
}

.btn.offer-cta:hover,
.btn.offer-cta:active {
  background: var(--accent);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}




/* ==========================================================================
   ULTRA-SHORT OFFER VERSION
   ========================================================================== */
.offer-ultra {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-quick-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-quick-outcomes li {
  font-size: 15px;
  color: #334155;
  font-weight: 500;
  display: flex;
  gap: 10px;
}

.offer-quick-outcomes li::before {
  content: "✓";
  color: #10B981;
  font-weight: bold;
}

.offer-value-mini {
  background: rgba(37, 99, 235, 0.05);
  padding: 16px;
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  font-size: 14px;
  line-height: 1.5;
  color: #1e293b;
}

.offer-value-mini strong {
  color: var(--accent);
}

.offer-2weeks-mini {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.offer-2weeks-mini strong {
  color: #0f172a;
}

.offer-hook {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 0;
}

.offer-decision-line {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}



.offer-pricing-box .cta-sub {
  font-size: 12px;
  color: #94A3B8;
  margin-top: 12px;
  margin-bottom: 24px;
}

.offer-proof {
  text-align: left;
  border-top: 1px solid #F1F5F9;
  padding-top: 20px;
  margin-bottom: 20px;
}

.offer-proof p {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  line-height: 1.4;
}

.offer-proof span {
  color: #10B981;
}

.offer-risk-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: #EFF6FF;
  padding: 10px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .offer-shell {
    padding: 24px 16px;
    border-radius: 0;
  }

  .single-offer-panel {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 40px;
  }

  .offer-pricing-box {
    position: static;
    order: 2;
    padding: 24px;
  }

  .offer-main {
    order: 1;
    padding-right: 0;
    gap: 24px;
  }

  .offer-title {
    font-size: 28px;
  }

  .offer-outcomes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   STICKY MOBILE CTA (DYNAMIC INJECTION)
   ========================================================================== */
.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-mobile.show {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-price {
  line-height: 1.2;
}

.sticky-price strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
}

.sticky-price span {
  font-size: 12px;
  font-weight: 600;
  color: #EF4444;
}

.sticky-btn {
  background: var(--accent);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

@media (min-width: 769px) {
  .sticky-cta-mobile {
    display: none;
  }
}

/* ==========================================================================
   EXIT INTENT POPUP
   ========================================================================== */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup.show {
  opacity: 1;
  visibility: visible;
}

.exit-box {
  background: white;
  padding: 40px;
  border-radius: 24px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-popup.show .exit-box {
  transform: scale(1);
}

.exit-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 12px;
}

.exit-box p {
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.6;
}

.exit-box .btn {
  width: 100%;
  margin-bottom: 16px;
}

#exit-close {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

#exit-close:hover {
  color: #64748B;
}

/* ==========================================================================
   6 CORE PM COMPETENCIES — OUTCOMES GRID
   ========================================================================== */
.outcomes-section {
  padding: 96px 0;
  background: #fff;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.outcome-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.outcome-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.outcome-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: #EFF6FF;
  padding: 4px 10px;
  border-radius: 99px;
  width: fit-content;
}

.outcome-icon {
  font-size: 28px;
  line-height: 1;
}

.outcome-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin: 0;
}

.outcome-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* Card #6 — AI / Future-ready PM Skill (Highlighted) */
.outcome-card--featured {
  background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 100%);
  border-color: #BFDBFE;
  border-width: 1.5px;
  position: relative;
  overflow: hidden;
}

.outcome-card--featured::after {
  content: "✦ New";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  color: #7C3AED;
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.04em;
}

.outcome-card--featured .outcome-tag {
  background: #EDE9FE;
  color: #7C3AED;
}

.outcome-card--featured h3 {
  color: #4C1D95;
}

@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison-section {
  padding: 80px 0;
  background: #fff;
}

.comparison-bridge {
  text-align: center;
  font-size: 18px;
  color: #475569;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-bridge strong {
  color: var(--primary, #2563EB);
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  border-bottom: 1px solid var(--border, #E2E8F0);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row>div {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.comparison-row--header {
  background: #F8FAFC;
  font-weight: 700;
  color: #0F172A;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-criterion {
  font-weight: 600;
  color: #334155;
  background: #F8FAFC;
}

.comparison-other {
  color: #64748B;
}

.comparison-highlight {
  background: #EFF6FF;
  color: #1E40AF;
  font-weight: 600;
  border-left: 1px solid #DBEAFE;
  border-right: 1px solid #DBEAFE;
}

.comparison-row--header .comparison-highlight {
  color: #1D4ED8;
  background: #DBEAFE;
}

.cmp-icon {
  margin-right: 8px;
  font-weight: bold;
}

.cmp-icon--no {
  color: #EF4444;
}

.cmp-icon--yes {
  color: #10B981;
}

@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
    border-bottom: 4px solid var(--border, #E2E8F0);
  }

  .comparison-row--header {
    display: none;
  }

  .comparison-criterion {
    background: #F1F5F9;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .comparison-other,
  .comparison-highlight {
    padding: 16px;
    justify-content: center;
    text-align: center;
  }

  .comparison-highlight {
    border-left: none;
    border-right: none;
    border-top: 1px solid #DBEAFE;
  }
}



/* ==========================================================================
   FINAL CTA PREMIUM SECTION
   ========================================================================== */
.final-cta-premium {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  text-align: center;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.final-cta-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #0F172A;
  line-height: 1.1;
  margin-bottom: 24px;
}

.final-cta-sub {
  font-size: 18px;
  color: #64748B;
  margin-bottom: 40px;
}

/* THE SPECIFIC PHRASE REQUESTED */
.final-push {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  color: #1e293b;
  max-width: 650px;
  margin: 60px auto;
  line-height: 1.6;
  position: relative;
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
}


.final-push::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 32px;
  opacity: 0.4;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.final-actions .btn-primary {
  padding: 20px 40px;
  font-size: 18px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.final-cta-advice {
  margin-top: 60px;
  font-size: 15px;
  color: #64748B;
  background: #f1f5f9;
  padding: 16px 24px;
  border-radius: 99px;
  display: inline-block;
}

.final-cta-advice a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .final-cta-premium {
    padding: 60px 20px;
  }

  .final-push {
    font-size: 18px;
    margin: 40px auto;
  }
}
