/* ===== Variables & Reset ===== */
:root {
  --primary: #0020ED;
  --primary-dark: #0018B8;
  --primary-light: #E0E8FF;
  --secondary: #0A0A14;
  --accent: #0084FE;
  --accent-light: #E0F0FF;
  --text: #1A1A2A;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #F5F8FF;
  --bg-dark: #111111;
  --border: #E0E4EB;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 32, 237, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 32, 237, 0.12);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Navbar ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}

.nav-menu a:hover { color: var(--primary); }

.btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.btn-nav:hover { background: var(--primary-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #0A0A14 0%, #001066 50%, var(--primary) 100%);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Hero v2 — split layout with animated tech orbit ===== */
.hero-v2 {
  text-align: left;
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top right, #0A1A4F 0%, #050817 70%);
}
.hero-v2 .hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55;
}
.hero-glow-1 { top: -120px; left: -80px; width: 420px; height: 420px; background: #0020ED; }
.hero-glow-2 { bottom: -160px; right: -80px; width: 460px; height: 460px; background: #0084FE; }

.hero-v2 .hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) { .hero-v2 .hero-container { grid-template-columns: 1fr; gap: 2.5rem; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22D680;
  box-shadow: 0 0 0 2px rgba(34, 214, 128, 0.25);
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse { 0%,100% { box-shadow: 0 0 0 2px rgba(34,214,128,0.25);} 50% { box-shadow: 0 0 0 6px rgba(34,214,128,0);} }

.hero-v2 h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: none;
  text-align: left;
}
.hero-grad {
  background: linear-gradient(135deg, #6FA3FF 0%, #00F2FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-v2 .hero-sub {
  text-align: left;
  margin: 0 0 2rem;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
}
.hero-v2 .hero-actions { justify-content: flex-start; margin-bottom: 2.5rem; }
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-stat-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}
.hero-stat-pill strong { color: #fff; font-weight: 700; margin-right: 0.25rem; }

/* ===== Tech orbit visual ===== */
.tech-orbit { position: relative; min-height: 460px; }
.tech-orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  aspect-ratio: 1 / 1;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tech-orbit-core-inner {
  /* Use aspect-ratio + width only so the parent flex/grid can never squish
   * height independently and turn this into an oval. */
  width: 110px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #0020ED 0%, #0084FE 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(0, 132, 254, 0.45), 0 0 0 7px rgba(0, 132, 254, 0.08);
  overflow: hidden;
  /* Continuous breathing pulse on the orb so the hero never looks static. */
  animation: coreBreathe 4.5s ease-in-out infinite;
}
@keyframes coreBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 50px rgba(0, 132, 254, 0.45), 0 0 0 7px rgba(0, 132, 254, 0.08);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(0, 132, 254, 0.65), 0 0 0 12px rgba(0, 132, 254, 0.1);
  }
}
/* The logo gets its own gentle float so it has independent life from the
 * orb's breathe — gives the impression the logo is "swimming" in the glow. */
.tech-orbit-logo {
  width: 72%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  animation: logoFloat 5.5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-3px) rotate(0.6deg); }
  50%      { transform: translateY(0) rotate(0deg); }
  75%      { transform: translateY(3px) rotate(-0.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tech-orbit-logo,
  .tech-orbit-core-inner { animation: none; }
}
.tech-orbit-ring {
  position: absolute; inset: -30px;
  border: 1.5px dashed rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: techRingSpin 30s linear infinite;
}
.tech-orbit-ring-2 {
  inset: -60px;
  border-color: rgba(255,255,255,0.12);
  animation-direction: reverse;
  animation-duration: 50s;
}
@keyframes techRingSpin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.tech-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  animation: techFloat 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.tech-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-4px) scale(1.04);
}
.tech-card.tech-card-feature {
  background: rgba(217, 119, 87, 0.12);
  border-color: rgba(217, 119, 87, 0.35);
  box-shadow: 0 0 24px rgba(217, 119, 87, 0.15);
}
.tech-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.tech-icon svg { width: 26px; height: 26px; }
.tech-card span {
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}
.tech-card.tech-card-feature span { color: #fff; font-weight: 600; }

@keyframes techFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .hero-v2 h1 { font-size: 2.2rem; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .tech-orbit-core, .tech-orbit-ring { display: none; }
  .tech-orbit { min-height: auto; }
}

/* ===== Page Hero ===== */
.page-hero {
  background: linear-gradient(135deg, #0A0A14 0%, #001066 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.page-hero p { font-size: 1.15rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* ===== Stats Bar ===== */
.stats-bar {
  background: #0A0A14;
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0084FE;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; color: var(--secondary); }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ===== Course Cards ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.courses-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Course rotator — cycles through groups of 3 every 30 sec with a fade */
.course-rotator { position: relative; }
.course-rotator-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 600ms ease-in-out;
  pointer-events: none;
}
.course-rotator-page.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}
.course-rotator-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.course-rotator-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.course-rotator-dot:hover { background: var(--accent); }
.course-rotator-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Why-AI-Now section */
.why-ai-now { background: var(--bg); }
.why-ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.why-ai-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-ai-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.why-ai-icon { font-size: 2rem; margin-bottom: 0.75rem; line-height: 1; }
.why-ai-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.why-ai-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
[data-theme="dark"] .why-ai-card { background: var(--bg-alt); border-color: var(--border); }

.course-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.course-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.course-card-thumb {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.course-card-thumb .course-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-card-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-card-badges .course-badge {
  margin-bottom: 0;
}

.course-card-badges .course-duration {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.course-card h3,
.course-card > p,
.course-tagline,
.course-labs-preview,
.course-meta,
.course-card-action {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.course-card h3 {
  padding-top: 1.25rem;
}

.course-card-action {
  padding-bottom: 1.5rem;
}

.course-card > a.btn {
  margin: 0 1.5rem 1.5rem;
}

.course-duration {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.course-badge {
  display: inline-block;
  background: var(--accent);
  color: #0F0F1A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-mid { background: #FFB84D; }
.badge-adv { background: #FF6B6B; color: #fff; }
.badge-all { background: #6366F1; color: #fff; }

.course-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--secondary); }

.course-tagline {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.course-card > p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; flex: 1; }

.course-labs-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.lab-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.course-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.course-card-action {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== Course Filters ===== */
.course-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== Course Detail Hero ===== */
.course-hero {
  background: linear-gradient(135deg, #0A0A14 0%, #001066 100%);
  color: #fff;
  padding: 4rem 0 3rem;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.course-hero-icon {
  width: 200px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.course-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badge-lg {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: #0F0F1A;
}

.course-badge-lg.badge-adv { background: #FF6B6B; color: #fff; }
.course-badge-lg.badge-mid { background: #FFB84D; color: #0F0F1A; }
.course-badge-lg.badge-all { background: #6366F1; color: #fff; }

.course-hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.course-hero-tagline {
  font-size: 1.15rem;
  color: #80B8FF;
  margin-bottom: 1rem;
  font-weight: 500;
}

.course-hero-desc {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.course-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Enroll Sidebar ===== */
.enroll-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}

.enroll-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.enroll-format {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.enroll-card .btn { margin-bottom: 0.5rem; }

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.installment-btn {
  position: relative;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.installment-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.installment-note {
  font-size: 0.7rem;
  background: #FFB84D;
  color: #0F0F1A;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.35rem;
  font-weight: 700;
}

.enroll-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.enroll-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.enroll-details li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
}

/* ===== Curriculum Timeline ===== */
.curriculum-timeline {
  max-width: 850px;
  margin: 0 auto;
}

.curriculum-module {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.module-marker {
  flex-shrink: 0;
}

.module-number {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.module-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  flex: 1;
  transition: all var(--transition);
}

.module-content:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.module-week {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.module-hours {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 2px 10px;
  background: rgba(0, 132, 254, 0.08);
  border: 1px solid rgba(0, 132, 254, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.module-header h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.module-topics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-topics li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.module-topics li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--text-light);
  font-size: 0.8rem;
}

.module-topics li.topic-lab {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 0.25rem;
}

.module-topics li.topic-lab::before {
  content: '&#x1f4bb;';
  left: 0.75rem;
  color: var(--primary);
}

/* ===== Lab Cards (Course Detail Dark Section) ===== */
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

.labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.lab-detail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}

.lab-detail-card:hover {
  border-color: rgba(108, 60, 225, 0.4);
  transform: translateY(-2px);
}

.lab-detail-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lab-detail-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.4rem; }
.lab-detail-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }

/* ===== Detail Two Col (Prerequisites / Careers) ===== */
.detail-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.detail-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.detail-list li {
  font-size: 0.95rem;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.career-list li::before { background: var(--accent); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author strong { display: block; color: var(--secondary); }
.testimonial-author span { font-size: 0.9rem; color: var(--text-light); }

/* ===== Enterprise CTA ===== */
.enterprise-cta {
  background: linear-gradient(135deg, #0A0A14 0%, #001066 100%);
  color: #fff;
}

.enterprise-cta h2 { color: #fff; }
.enterprise-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-highlighted {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 1.25rem;
  border-radius: 20px;
}

.pricing-card h3 { font-size: 1.3rem; color: var(--secondary); margin-bottom: 1rem; }
.pricing-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.pricing-period { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.pricing-employees { color: var(--text); font-weight: 600; margin-bottom: 1.5rem; }

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Enterprise Syllabus Timeline ===== */
.syllabus-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.syllabus-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-light);
}

.syllabus-phase {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.phase-marker {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  z-index: 1;
}

.phase-content {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  flex: 1;
}

.phase-content h3 { color: var(--secondary); margin-bottom: 0.5rem; }
.phase-content p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }

.phase-modules {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.phase-modules li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}

.phase-modules li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Forms ===== */
.form-container { max-width: 640px; margin: 0 auto; }

/* Compact form for signup/login pages */
.auth-form-container {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.auth-form-container-wide { max-width: 560px; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-form .form-group { gap: 0.3rem; }
.auth-form .form-group label { font-size: 0.85rem; }
.auth-form .form-group input {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  border-width: 1px;
}
.auth-form button[type="submit"] {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}
.auth-form-meta {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}
.auth-hint { color: var(--text-light); font-size: 0.78rem; margin-top: 0.15rem; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--text-light);
  font-size: 0.75rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-google {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.btn-google:hover {
  background: var(--bg-alt, #f5f8ff);
  border-color: var(--text-light);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 2rem; color: var(--secondary); }

.contact-item { margin-bottom: 1.5rem; }
.contact-item h4 { color: var(--primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.25rem; }
.contact-item p { color: var(--text); }

/* ===== About Page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-grid h2 { color: var(--secondary); margin-bottom: 1rem; }
.about-grid p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

/* About narrative — long-form "Why AI Now" section */
.about-narrative { max-width: 820px; margin: 0 auto; }
.about-narrative h3 {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.6rem;
  line-height: 1.3;
}
.about-narrative h3:first-child { margin-top: 1rem; }
.about-narrative p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-narrative strong { color: var(--text); font-weight: 600; }
.about-bullets {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
}
.about-bullets li {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* ===== Locations ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.location-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

/* City skyline header band. Rounded top corners on the cityart itself
   so we don't need overflow:hidden on the card (which would clip the
   status pill that sits above the card edge at top: -12px). */
.location-cityart {
  margin: -2rem -2rem 1.25rem;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.location-active {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.location-coming-soon {
  opacity: 0.7;
}

.location-status {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-open {
  background: var(--accent);
  color: #0F0F1A;
}

.status-coming {
  background: #FFB84D;
  color: #0F0F1A;
}

.location-header { margin-bottom: 1rem; }
.location-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.25rem; }
.location-address { font-size: 0.9rem; color: var(--text-light); }
.location-phone { font-size: 0.9rem; color: var(--primary); font-weight: 500; }
.location-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.25rem; }

.location-labs { margin-bottom: 1.5rem; }
.location-labs h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); margin-bottom: 0.6rem; }
.location-lab-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ===== Success / Error ===== */
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-message { text-align: center; padding: 3rem 0; }
.success-message h2 { margin: 1rem 0; }

.error-message {
  background: #FEF2F2;
  color: #DC2626;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p { font-size: 0.95rem; line-height: 1.7; }

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== Labs Page ===== */
.labs-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.lab-page-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}

.lab-page-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.lab-page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lab-page-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius);
}

.lab-page-header h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.15rem;
}

.lab-platform {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 500;
}

.lab-specs-box {
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.lab-specs-box strong {
  color: var(--text);
}

.lab-page-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lab-tools { margin-bottom: 1rem; }

.lab-tools h4,
.lab-used-by h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.lab-tool-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.lab-course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lab-course-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ===== Lab Detail Page ===== */
.lab-hero-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.lab-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.lab-detail-main h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.lab-detail-main h2:first-child {
  margin-top: 0;
}

.lab-overview-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.lab-what-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lab-what-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.lab-what-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Workflow Steps */
.lab-workflow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workflow-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.workflow-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}

.workflow-body {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.workflow-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.workflow-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Lab Sidebar */
.lab-sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.lab-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.lab-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.lab-specs-table tr {
  border-bottom: 1px solid var(--border);
}

.lab-specs-table tr:last-child {
  border-bottom: none;
}

.lab-specs-table td {
  padding: 0.6rem 0;
  font-size: 0.85rem;
  vertical-align: top;
}

.spec-label {
  color: var(--text);
  font-weight: 600;
  width: 40%;
  padding-right: 0.75rem;
}

.spec-value {
  color: var(--text-light);
}

.lab-sidebar-courses {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lab-sidebar-courses li {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 500;
  padding-left: 1.25rem;
  position: relative;
}

.lab-sidebar-courses li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===== Course Labs Grid (on detail page) ===== */
.course-labs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.course-lab-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.course-lab-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.course-lab-card h4 {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.lab-link-arrow {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 500;
}

/* ===== Module Sections (Topics vs Exercises) ===== */
.module-section {
  margin-top: 1.25rem;
}

.module-section:first-of-type {
  margin-top: 0;
}

.module-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}

/* ===== Exercise Items ===== */
.exercise-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exercise-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 0.85rem 1rem;
}

.exercise-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.exercise-number {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
}

.exercise-lab-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--primary-light);
  color: var(--primary-dark);
  white-space: nowrap;
}

.exercise-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

/* ===== Course Overview Video ===== */
.course-overview-video {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-duration {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.exercise-steps {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
  list-style: decimal;
}

.exercise-steps li {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.3rem;
  padding-left: 0.25rem;
}

/* ===== Enterprise Page ===== */
.why-enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.catalog-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.catalog-stat {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.catalog-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.catalog-stat span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.enterprise-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.enterprise-how-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}

.enterprise-how-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.enterprise-how-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 1rem;
}

.enterprise-how-card h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 0.5rem; }
.enterprise-how-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.arch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.arch-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.arch-card h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 0.5rem; }
.arch-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Cost Comparison */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.cost-card {
  border-radius: var(--radius);
  padding: 2rem;
}

.cost-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.cost-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cost-card li {
  font-size: 0.92rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.cost-without {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.cost-without h3 { color: #991B1B; }

.cost-without li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

.cost-without li { color: #7F1D1D; }

.cost-with {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.cost-with h3 { color: #166534; }

.cost-with li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 700;
}

.cost-with li { color: #14532D; }

/* ===== Dashboard ===== */
.dash-header {
  background: linear-gradient(135deg, #0A0A14 0%, #001066 100%);
  color: #fff;
  padding: 2rem 0;
}

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-header h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.25rem; }
.dash-header p { font-size: 0.95rem; opacity: 0.8; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.dash-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.dash-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.dash-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.dash-info-bar {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.dash-info-bar code {
  background: var(--bg);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0.25rem;
}

.dash-section {
  margin-bottom: 2.5rem;
}

.dash-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.dash-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.dash-form input, .dash-form select {
  padding: 0.6rem 0.85rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  flex: 1;
  min-width: 150px;
}

.dash-form input:focus, .dash-form select:focus {
  outline: none;
  border-color: var(--primary);
}

.table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.dash-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border);
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.dash-table tr:hover { background: var(--bg-alt); }

.role-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--primary-light);
  color: var(--primary);
}

.status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-assigned { background: #FEF3C7; color: #92400E; }
.status-in_progress { background: #DBEAFE; color: #1E40AF; }
.status-completed { background: #D1FAE5; color: #065F46; }

.assigned-courses-list { display: flex; flex-direction: column; gap: 0.4rem; }

.assigned-course-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.assigned-course-name { flex: 1; }

.btn-icon {
  background: none;
  border: none;
  color: #DC2626;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0 0.35rem;
  font-weight: 700;
  line-height: 1;
}

.btn-icon:hover { color: #991B1B; }

.btn-sm {
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
}

.btn-danger {
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.btn-danger:hover {
  background: #DC2626;
  color: #fff;
}

/* ===== Employee Portal ===== */
.portal-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.portal-course-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.portal-course-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.portal-course-thumb .course-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-course-header,
.portal-course-progress,
.portal-course-meta,
.portal-course-actions {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.portal-course-header {
  padding-top: 1.25rem;
}

.portal-course-card:hover {
  box-shadow: var(--shadow);
}

.portal-course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.portal-course-header h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  flex: 1;
  margin-right: 0.5rem;
}

.portal-course-progress { margin-bottom: 1rem; }

.progress-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.portal-course-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--secondary); margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-light); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active { display: flex; }

  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 4rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid, .courses-preview { grid-template-columns: 1fr; }
  .course-hero-content { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-highlighted { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .phase-modules { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }

  .syllabus-timeline::before { left: 20px; }
  .phase-marker { width: 40px; height: 40px; font-size: 0.65rem; }
  .syllabus-phase { gap: 1rem; }

  .curriculum-module { flex-direction: column; gap: 0.75rem; }
  .course-hero-stats { gap: 1.25rem; }
  .labs-page-grid { grid-template-columns: 1fr; }
  .lab-detail-layout { grid-template-columns: 1fr; }
  .why-enterprise-grid { grid-template-columns: 1fr; }
  .catalog-highlights { grid-template-columns: repeat(2, 1fr); }
  .enterprise-how-grid { grid-template-columns: repeat(2, 1fr); }
  .arch-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-form { flex-direction: column; }
  .dash-form input, .dash-form select { min-width: auto; }
  .dash-header-row { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .portal-courses-grid { grid-template-columns: 1fr; }
  .course-labs-grid { grid-template-columns: 1fr; }
  .exercise-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Learning Paths (business site) ===== */
.paths-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.path-teaser-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.path-teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-teaser-card h3 { margin: 0 0 0.4rem; font-size: 1.1rem; color: var(--secondary); }
.path-teaser-card p { color: var(--text-light); font-size: 0.9rem; flex: 1; margin-bottom: 0.75rem; }
.path-teaser-meta { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.75rem; }
.path-teaser-cta { font-weight: 600; font-size: 0.9rem; }

.paths-grid-marketing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.path-card-marketing {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid;
  border-radius: 14px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.path-card-marketing:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.path-card-marketing h3 { margin: 0.5rem 0 0.35rem; font-size: 1.2rem; color: var(--secondary); }
.path-tagline { color: var(--primary); font-weight: 500; font-size: 0.88rem; margin: 0 0 0.75rem; }
.path-card-desc { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin: 0 0 1rem; flex: 1; }
.path-card-meta { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.6rem; display: flex; gap: 0.5rem; }
.path-card-price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.25rem; }
.path-card-price { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.path-card-regular { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }
.path-card-installments { color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.6rem; }
.path-card-outcome { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 0.75rem; font-style: italic; }
.path-card-cta { font-weight: 600; font-size: 0.9rem; }

.paths-footnote {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}
.paths-footnote a { color: var(--primary); font-weight: 600; }

/* Path detail page */
.path-detail-hero-bus {
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.path-detail-hero-bus::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 65%);
  border-radius: 50%;
}
.path-detail-hero-content-bus { position: relative; z-index: 1; max-width: 800px; }
.path-back-link { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-decoration: none; }
.path-back-link:hover { color: #fff; }
.path-detail-hero-content-bus h1 { color: #fff; font-size: 2.25rem; margin: 1rem 0 0.5rem; }
.path-detail-tagline { opacity: 0.95; font-size: 1.05rem; margin: 0 0 1rem; }
.path-detail-desc { opacity: 0.88; line-height: 1.7; max-width: 720px; margin: 0 0 1.5rem; }
.path-detail-stats-bus { display: flex; flex-wrap: wrap; gap: 2rem; }
.path-detail-stats-bus > div { display: flex; flex-direction: column; }
.path-detail-stats-bus strong { font-size: 1.25rem; color: #fff; }
.path-detail-stats-bus span { font-size: 0.8rem; opacity: 0.85; }

/* Two-plan pricing grid (business site path detail) */
.path-bundle-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: -3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 720px) { .path-bundle-plans { grid-template-columns: 1fr; } }

.path-plan-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.path-plan-card.path-plan-featured { box-shadow: 0 10px 32px rgba(0,0,0,0.1); transform: translateY(-6px); }
.path-plan-card h3 { margin: 0.5rem 0 0.25rem; font-size: 1.15rem; color: var(--secondary); }
.path-plan-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.path-plan-badge-muted { background: #F5F8FF; color: var(--text); border: 1px solid var(--border); }
.path-plan-price-row { display: flex; align-items: baseline; gap: 0.6rem; margin: 0.35rem 0 0.25rem; }
.path-plan-price { font-size: 1.85rem; font-weight: 700; color: var(--text); }
.path-plan-regular { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; }
.path-plan-period { color: var(--text-light); font-size: 0.9rem; }
.path-plan-savings { margin: 0 0 0.75rem; color: var(--text-light); font-size: 0.85rem; }
.path-plan-features { list-style: none; padding: 0; margin: 0 0 1rem; color: var(--text-light); font-size: 0.85rem; }
.path-plan-features li { padding: 0.25rem 0; padding-left: 1.25rem; position: relative; }
.path-plan-features li::before { content: '\2713'; position: absolute; left: 0; color: #10B981; font-weight: 700; }

.path-bundle-card-bus {
  background: var(--bg);
  border: 2px solid;
  border-radius: 14px;
  padding: 2rem;
  margin-top: -3rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 10;
}
@media (max-width: 720px) { .path-bundle-card-bus { grid-template-columns: 1fr; } }
.path-bundle-card-bus h2 { font-size: 1.4rem; margin: 0.6rem 0 0.4rem; color: var(--secondary); }
.path-bundle-card-bus p { color: var(--text-light); font-size: 0.92rem; margin: 0 0 1rem; }
.path-bundle-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.path-bundle-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.4rem; }
.path-bundle-price { font-size: 2rem; font-weight: 700; color: var(--text); }
.path-bundle-regular { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; }
.path-bundle-save-pill {
  font-size: 0.75rem; font-weight: 700; color: #065F46;
  background: #D1FAE5; padding: 0.25rem 0.6rem; border-radius: 10px;
}
.path-bundle-installments { color: var(--text-light); font-size: 0.88rem; }
.path-bundle-actions-bus { display: flex; flex-direction: column; gap: 0.6rem; }

.path-courses-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 1rem;
}
.path-course-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.path-course-num {
  width: 36px; height: 36px; border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.path-course-info h4 { margin: 0 0 0.2rem; font-size: 1rem; color: var(--secondary); }
.path-course-link { color: var(--primary); font-size: 0.82rem; text-decoration: none; font-weight: 500; }
.path-course-link:hover { text-decoration: underline; }
.path-course-price { font-weight: 700; color: var(--text); font-size: 1rem; }

/* ===== Synapse showcase section ===== */
.synapse-showcase {
  background: linear-gradient(180deg, #FAFBFF 0%, #F0F4FF 100%);
  position: relative;
  overflow: hidden;
}
.synapse-showcase::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,32,237,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.synapse-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) { .synapse-showcase-grid { grid-template-columns: 1fr; } }

.synapse-showcase-eyebrow {
  display: inline-block;
  background: var(--primary-light, #E0E8FF);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.synapse-showcase-text h2 {
  font-size: 2.1rem;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  color: var(--secondary);
}
.synapse-brand {
  background: linear-gradient(135deg, #0020ED, #0084FE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.synapse-showcase-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.synapse-showcase-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.synapse-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) { .synapse-features { grid-template-columns: 1fr; gap: 1.25rem; } }
.synapse-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.synapse-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,32,237,0.08);
}
.synapse-feature h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: var(--secondary);
}
.synapse-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

.synapse-showcase-note {
  background: #fff;
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.synapse-showcase-note strong { color: var(--primary); }

/* Mock chat preview */
.synapse-showcase-visual {
  position: sticky;
  top: 6rem;
  margin-top: 12rem; /* align top edge with "Self-paced learning..." description paragraph */
}
@media (max-width: 920px) { .synapse-showcase-visual { margin-top: 0; position: static; } }
.synapse-mock-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,32,237,0.12), 0 6px 16px rgba(0,0,0,0.06);
  border: 1px solid #E8EDF7;
  overflow: hidden;
}
.synapse-mock-header {
  background: linear-gradient(135deg, #0020ED, #0084FE);
  color: #fff;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.synapse-mock-avatar {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.synapse-mock-name { font-weight: 700; font-size: 0.95rem; }
.synapse-mock-tagline { font-size: 0.7rem; opacity: 0.85; }
.synapse-mock-context {
  background: #F4F7FE;
  color: var(--primary);
  font-size: 0.72rem;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid #E8EDF7;
  font-weight: 500;
}
.synapse-mock-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #FAFBFF;
}
.synapse-mock-msg {
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 88%;
}
.synapse-mock-msg.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.synapse-mock-msg.bot {
  background: #fff;
  color: var(--text);
  border: 1px solid #E8EDF7;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.synapse-mock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.6rem 1rem 0.85rem;
  border-top: 1px solid #E8EDF7;
  background: #fff;
}
.synapse-mock-chip {
  background: var(--primary-light, #E0E8FF);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

/* Checkout review (interstitial between path detail and Stripe) */
.checkout-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .checkout-review-grid { grid-template-columns: 1fr; } }

.checkout-summary-card,
.checkout-account-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.checkout-summary-card h3,
.checkout-account-card h3 { margin: 0 0 1rem; font-size: 1.1rem; color: var(--secondary); }
.checkout-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; font-size: 0.95rem;
}
.checkout-summary-row span { color: var(--text-light); }
.checkout-summary-row strong { color: var(--text); }
.checkout-summary-total {
  font-size: 1.1rem; padding-top: 0.75rem;
}
.checkout-summary-total strong { font-size: 1.3rem; }
.checkout-summary-card hr {
  border: none; border-top: 1px solid var(--border); margin: 0.5rem 0;
}
.checkout-summary-note { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.5rem; }
.checkout-back-link {
  display: inline-block; margin-top: 1.5rem;
  color: var(--primary); font-size: 0.9rem; text-decoration: none; font-weight: 500;
}
.checkout-account-subtitle { color: var(--text-light); font-size: 0.9rem; margin: 0 0 1rem; }
.checkout-divider {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 1.25rem 0; color: var(--text-muted); font-size: 0.75rem;
}
.checkout-divider::before, .checkout-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.checkout-guest-note {
  color: var(--text-muted); font-size: 0.78rem; margin-top: 0.6rem; text-align: center;
}
.checkout-signup-note {
  color: var(--text-light); font-size: 0.85rem; margin-top: 1rem; text-align: center;
  padding-top: 1rem; border-top: 1px solid var(--border-light, #F0F2F5);
}
/* ===== Why this price section ===== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.value-card-highlight {
  border-color: var(--primary);
  background: linear-gradient(180deg, #F0F4FF 0%, var(--bg) 100%);
}
.value-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.value-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.3;
}
.value-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.value-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.6rem;
}
.value-comparison {
  background: var(--bg);
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
  max-width: 900px;
  margin: 0 auto;
}
.value-comparison strong { color: var(--primary); }

/* ===== Learning Paths (business site) ===== */
.paths-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.path-teaser-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.path-teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-teaser-card h3 { margin: 0 0 0.4rem; font-size: 1.1rem; color: var(--secondary); }
.path-teaser-card p { color: var(--text-light); font-size: 0.9rem; flex: 1; margin-bottom: 0.75rem; }
.path-teaser-meta { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.75rem; }
.path-teaser-cta { font-weight: 600; font-size: 0.9rem; }

.paths-grid-marketing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.path-card-marketing {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid;
  border-radius: 14px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.path-card-marketing:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.path-card-marketing h3 { margin: 0.5rem 0 0.35rem; font-size: 1.2rem; color: var(--secondary); }
.path-tagline { color: var(--primary); font-weight: 500; font-size: 0.88rem; margin: 0 0 0.75rem; }
.path-card-desc { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin: 0 0 1rem; flex: 1; }
.path-card-meta { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 0.6rem; display: flex; gap: 0.5rem; }
.path-card-price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.25rem; }
.path-card-price { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.path-card-regular { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }
.path-card-installments { color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.6rem; }
.path-card-outcome { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 0.75rem; font-style: italic; }
.path-card-cta { font-weight: 600; font-size: 0.9rem; }

.paths-footnote {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}
.paths-footnote a { color: var(--primary); font-weight: 600; }

/* Path detail page */
.path-detail-hero-bus {
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.path-detail-hero-bus::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 65%);
  border-radius: 50%;
}
.path-detail-hero-content-bus { position: relative; z-index: 1; max-width: 800px; }
.path-back-link { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-decoration: none; }
.path-back-link:hover { color: #fff; }
.path-detail-hero-content-bus h1 { color: #fff; font-size: 2.25rem; margin: 1rem 0 0.5rem; }
.path-detail-tagline { opacity: 0.95; font-size: 1.05rem; margin: 0 0 1rem; }
.path-detail-desc { opacity: 0.88; line-height: 1.7; max-width: 720px; margin: 0 0 1.5rem; }
.path-detail-stats-bus { display: flex; flex-wrap: wrap; gap: 2rem; }
.path-detail-stats-bus > div { display: flex; flex-direction: column; }
.path-detail-stats-bus strong { font-size: 1.25rem; color: #fff; }
.path-detail-stats-bus span { font-size: 0.8rem; opacity: 0.85; }

/* Two-plan pricing grid (business site path detail) */
.path-bundle-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: -3rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 720px) { .path-bundle-plans { grid-template-columns: 1fr; } }

.path-plan-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.path-plan-card.path-plan-featured { box-shadow: 0 10px 32px rgba(0,0,0,0.1); transform: translateY(-6px); }
.path-plan-card h3 { margin: 0.5rem 0 0.25rem; font-size: 1.15rem; color: var(--secondary); }
.path-plan-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.path-plan-badge-muted { background: #F5F8FF; color: var(--text); border: 1px solid var(--border); }
.path-plan-price-row { display: flex; align-items: baseline; gap: 0.6rem; margin: 0.35rem 0 0.25rem; }
.path-plan-price { font-size: 1.85rem; font-weight: 700; color: var(--text); }
.path-plan-regular { text-decoration: line-through; color: var(--text-muted); font-size: 1rem; }
.path-plan-period { color: var(--text-light); font-size: 0.9rem; }
.path-plan-savings { margin: 0 0 0.75rem; color: var(--text-light); font-size: 0.85rem; }
.path-plan-features { list-style: none; padding: 0; margin: 0 0 1rem; color: var(--text-light); font-size: 0.85rem; }
.path-plan-features li { padding: 0.25rem 0; padding-left: 1.25rem; position: relative; }
.path-plan-features li::before { content: '\2713'; position: absolute; left: 0; color: #10B981; font-weight: 700; }

.path-bundle-card-bus {
  background: var(--bg);
  border: 2px solid;
  border-radius: 14px;
  padding: 2rem;
  margin-top: -3rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 10;
}
@media (max-width: 720px) { .path-bundle-card-bus { grid-template-columns: 1fr; } }
.path-bundle-card-bus h2 { font-size: 1.4rem; margin: 0.6rem 0 0.4rem; color: var(--secondary); }
.path-bundle-card-bus p { color: var(--text-light); font-size: 0.92rem; margin: 0 0 1rem; }
.path-bundle-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.path-bundle-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.4rem; }
.path-bundle-price { font-size: 2rem; font-weight: 700; color: var(--text); }
.path-bundle-regular { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; }
.path-bundle-save-pill {
  font-size: 0.75rem; font-weight: 700; color: #065F46;
  background: #D1FAE5; padding: 0.25rem 0.6rem; border-radius: 10px;
}
.path-bundle-installments { color: var(--text-light); font-size: 0.88rem; }
.path-bundle-actions-bus { display: flex; flex-direction: column; gap: 0.6rem; }

.path-courses-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 1rem;
}
.path-course-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.path-course-num {
  width: 36px; height: 36px; border-radius: 50%;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.path-course-info h4 { margin: 0 0 0.2rem; font-size: 1rem; color: var(--secondary); }
.path-course-link { color: var(--primary); font-size: 0.82rem; text-decoration: none; font-weight: 500; }
.path-course-link:hover { text-decoration: underline; }
.path-course-price { font-weight: 700; color: var(--text); font-size: 1rem; }

/* ===== Synapse showcase section ===== */
.synapse-showcase {
  background: linear-gradient(180deg, #FAFBFF 0%, #F0F4FF 100%);
  position: relative;
  overflow: hidden;
}
.synapse-showcase::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,32,237,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.synapse-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) { .synapse-showcase-grid { grid-template-columns: 1fr; } }

.synapse-showcase-eyebrow {
  display: inline-block;
  background: var(--primary-light, #E0E8FF);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.synapse-showcase-text h2 {
  font-size: 2.1rem;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  color: var(--secondary);
}
.synapse-brand {
  background: linear-gradient(135deg, #0020ED, #0084FE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.synapse-showcase-tagline {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.synapse-showcase-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.synapse-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) { .synapse-features { grid-template-columns: 1fr; gap: 1.25rem; } }
.synapse-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.synapse-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,32,237,0.08);
}
.synapse-feature h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: var(--secondary);
}
.synapse-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

.synapse-showcase-note {
  background: #fff;
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.synapse-showcase-note strong { color: var(--primary); }

/* Mock chat preview */
.synapse-showcase-visual {
  position: sticky;
  top: 6rem;
  margin-top: 12rem; /* align top edge with "Self-paced learning..." description paragraph */
}
@media (max-width: 920px) { .synapse-showcase-visual { margin-top: 0; position: static; } }
.synapse-mock-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,32,237,0.12), 0 6px 16px rgba(0,0,0,0.06);
  border: 1px solid #E8EDF7;
  overflow: hidden;
}
.synapse-mock-header {
  background: linear-gradient(135deg, #0020ED, #0084FE);
  color: #fff;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.synapse-mock-avatar {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.synapse-mock-name { font-weight: 700; font-size: 0.95rem; }
.synapse-mock-tagline { font-size: 0.7rem; opacity: 0.85; }
.synapse-mock-context {
  background: #F4F7FE;
  color: var(--primary);
  font-size: 0.72rem;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid #E8EDF7;
  font-weight: 500;
}
.synapse-mock-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #FAFBFF;
}
.synapse-mock-msg {
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 88%;
}
.synapse-mock-msg.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.synapse-mock-msg.bot {
  background: #fff;
  color: var(--text);
  border: 1px solid #E8EDF7;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.synapse-mock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.6rem 1rem 0.85rem;
  border-top: 1px solid #E8EDF7;
  background: #fff;
}
.synapse-mock-chip {
  background: var(--primary-light, #E0E8FF);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

/* Checkout review (interstitial between path detail and Stripe) */
.checkout-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .checkout-review-grid { grid-template-columns: 1fr; } }

.checkout-summary-card,
.checkout-account-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.checkout-summary-card h3,
.checkout-account-card h3 { margin: 0 0 1rem; font-size: 1.1rem; color: var(--secondary); }
.checkout-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; font-size: 0.95rem;
}
.checkout-summary-row span { color: var(--text-light); }
.checkout-summary-row strong { color: var(--text); }
.checkout-summary-total {
  font-size: 1.1rem; padding-top: 0.75rem;
}
.checkout-summary-total strong { font-size: 1.3rem; }
.checkout-summary-card hr {
  border: none; border-top: 1px solid var(--border); margin: 0.5rem 0;
}
.checkout-summary-note { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.5rem; }
.checkout-back-link {
  display: inline-block; margin-top: 1.5rem;
  color: var(--primary); font-size: 0.9rem; text-decoration: none; font-weight: 500;
}
.checkout-account-subtitle { color: var(--text-light); font-size: 0.9rem; margin: 0 0 1rem; }
.checkout-divider {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 1.25rem 0; color: var(--text-muted); font-size: 0.75rem;
}
.checkout-divider::before, .checkout-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.checkout-guest-note {
  color: var(--text-muted); font-size: 0.78rem; margin-top: 0.6rem; text-align: center;
}
.checkout-signup-note {
  color: var(--text-light); font-size: 0.85rem; margin-top: 1rem; text-align: center;
  padding-top: 1rem; border-top: 1px solid var(--border-light, #F0F2F5);
}


/* =============================================================================
   COURSE DETAIL PAGE (single template for all 13 courses; layout adapted from
   the AI Learning Path HTML brief).
   ========================================================================== */
.cd-c-lecture  { color: #0084FE; }
.cd-c-exercise { color: #38d9a9; }
.cd-c-lab      { color: #f9a03f; }
.cd-c-quiz     { color: #e05c8a; }
.cd-c-project  { color: #a064f0; }
.cd-c-capstone { color: #ffb432; }
.cd-c-activity { color: #64b4f0; }
.cd-c-reading  { color: #c8b864; }
.cd-c-forum    { color: #50d0aa; }
.cd-c-career   { color: #9696ff; }
.cd-c-lecture-bg  { background: rgba(0,132,254,.12); color: #0084FE; }
.cd-c-exercise-bg { background: rgba(56,217,169,.12); color: #38d9a9; }
.cd-c-lab-bg      { background: rgba(249,160,63,.12); color: #f9a03f; }
.cd-c-quiz-bg     { background: rgba(224,92,138,.12); color: #e05c8a; }
.cd-c-project-bg  { background: rgba(160,100,240,.12); color: #a064f0; }
.cd-c-capstone-bg { background: rgba(255,180,50,.15); color: #ffb432; }
.cd-c-activity-bg { background: rgba(100,180,240,.12); color: #64b4f0; }
.cd-c-reading-bg  { background: rgba(200,184,100,.15); color: #c8b864; }
.cd-c-forum-bg    { background: rgba(80,208,170,.12); color: #50d0aa; }
.cd-c-career-bg   { background: rgba(150,150,255,.12); color: #9696ff; }

/* Course briefing video */
.cd-video-section { background: var(--secondary); padding: 40px 0 44px; }
.cd-video-section .cd-section-label { color: rgba(255,255,255,0.5); }
.cd-video-wrap { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cd-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  background: #000;
  object-fit: contain;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.cd-video-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}
.cd-video-badge {
  flex-shrink: 0;
  background: rgba(0,132,254,0.18);
  color: #0084FE;
  border: 1px solid rgba(0,132,254,0.3);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cd-hero {
  position: relative;
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #FAFCFF 0%, #F4F6FB 100%);
  border-bottom: 1px solid #E5E9F2;
  overflow: hidden;
}
.cd-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% -10%, rgba(0,132,254,.08) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 10% 110%, rgba(56,217,169,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cd-hero-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.cd-hero-text { max-width: 720px; }
.cd-tag { display: inline-block; background: rgba(0,132,254,.1); color: #0084FE; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 5px 12px; border-radius: 30px; margin-bottom: 16px; }
.cd-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: #1A2138; margin: 0 0 12px; }
.cd-tagline { font-size: 17px; color: #6B7280; font-weight: 500; margin: 0 0 16px; }
.cd-desc { font-size: 15px; color: #6B7280; line-height: 1.6; margin: 0 0 28px; max-width: 600px; }
.cd-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.cd-meta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; min-width: 240px; }
.cd-meta-box { background: #fff; border: 1px solid #E5E9F2; border-radius: 10px; padding: 14px 18px; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,.03); }
.cd-meta-n { font-size: 26px; font-weight: 800; color: #0084FE; line-height: 1; margin-bottom: 4px; letter-spacing: -.02em; }
.cd-meta-l { font-size: 11px; color: #6B7280; text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }

.cd-section { padding: 36px 0; }
.cd-section-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #9CA3AF; font-weight: 600; margin-bottom: 18px; padding-bottom: 8px; border-bottom: 1px solid #E5E9F2; }

/* "Live class delivery" note shown above the curriculum modules.
   Reassures prospects that topics are taught live; recordings come later. */
.cd-live-note {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.1rem; margin-bottom: 1.25rem;
  background: rgba(0, 132, 254, 0.06);
  border: 1px solid rgba(0, 132, 254, 0.22);
  border-radius: 10px;
  color: var(--text);
}
.cd-live-note-icon { font-size: 1.2rem; flex-shrink: 0; }
.cd-live-note strong { color: var(--primary); font-weight: 700; }
.cd-live-note span { color: var(--text-light); font-size: 0.92rem; line-height: 1.5; }
[data-theme="dark"] .cd-live-note {
  background: rgba(0, 132, 254, 0.10);
  border-color: rgba(0, 132, 254, 0.35);
}

.cd-outcomes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.cd-outcome-card { background: #fff; border: 1px solid #E5E9F2; border-radius: 10px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #1A2138; transition: transform .15s, box-shadow .15s; }
.cd-outcome-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,32,237,.08); }
.cd-outcome-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }

/* 5 columns so 10 component types lay out cleanly as 5x2; gracefully drops to
 * 3 then 2 cols on smaller screens. */
.cd-comp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 980px) { .cd-comp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .cd-comp-grid { grid-template-columns: repeat(2, 1fr); } }
.cd-comp-card { background: #fff; border: 1px solid #E5E9F2; border-radius: 10px; padding: 18px; text-align: center; }
.cd-comp-icon { font-size: 24px; margin-bottom: 8px; line-height: 1; }
.cd-comp-n { font-size: 22px; font-weight: 800; margin-bottom: 4px; line-height: 1; }
.cd-comp-l { font-size: 11px; color: #6B7280; text-transform: uppercase; letter-spacing: .05em; font-weight: 500; }

/* Legend — also a 5-column grid so the 10 type chips align in a clean 5x2.
 * Bumped dot + text size for readability on the marketing page. */
.cd-legend { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px 24px; padding: 22px 26px; background: #fff; border: 1px solid #E5E9F2; border-radius: 12px; }
@media (max-width: 980px) { .cd-legend { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .cd-legend { grid-template-columns: repeat(2, 1fr); } }
.cd-legend-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #4B5563; font-weight: 500; }
.cd-legend-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; display: inline-block; }

.cd-module { background: #fff; border: 1px solid #E5E9F2; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.cd-module[open] { border-color: rgba(0,132,254,.3); }
.cd-module-header { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 16px 22px; cursor: pointer; user-select: none; list-style: none; transition: background .15s; }
.cd-module-header::-webkit-details-marker { display: none; }
.cd-module-header:hover { background: rgba(0,132,254,.03); }
.cd-module-num { font-size: 11px; font-weight: 600; letter-spacing: .08em; padding: 4px 10px; border-radius: 6px; background: rgba(0,132,254,.1); color: #0084FE; font-family: monospace; flex-shrink: 0; }
.cd-module-title-group { min-width: 0; }
.cd-module-title { font-size: 16px; font-weight: 700; color: #1A2138; margin-bottom: 2px; }
.cd-module-subtitle { font-size: 13px; color: #6B7280; }
.cd-module-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cd-module-hrs { font-size: 12px; color: #6B7280; font-family: monospace; }
.cd-chevron { width: 22px; height: 22px; border-radius: 50%; background: #F4F6FB; color: #6B7280; font-size: 11px; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s; }
.cd-module[open] .cd-chevron { transform: rotate(180deg); }
.cd-module-body { padding: 6px 22px 18px; border-top: 1px solid #F0F2F7; }

.cd-item { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px; margin: 4px 0; transition: background .15s; }
.cd-item:hover { background: #F4F6FB; }
.cd-item-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.cd-item-text { min-width: 0; }
.cd-item-name { font-size: 14px; font-weight: 500; color: #1A2138; line-height: 1.4; }
.cd-item-detail { font-size: 12.5px; color: #6B7280; margin-top: 2px; line-height: 1.5; }
.cd-item-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; background: rgba(0,132,254,.08); }
.cd-item-badge.cd-c-lecture  { background: rgba(0,132,254,.1); }
.cd-item-badge.cd-c-exercise { background: rgba(56,217,169,.12); }
.cd-item-badge.cd-c-lab      { background: rgba(249,160,63,.12); }
.cd-item-badge.cd-c-quiz     { background: rgba(224,92,138,.12); }
.cd-item-badge.cd-c-project  { background: rgba(160,100,240,.12); }
.cd-item-badge.cd-c-capstone { background: rgba(255,180,50,.15); }
.cd-item-badge.cd-c-activity { background: rgba(100,180,240,.12); }
.cd-item-badge.cd-c-reading  { background: rgba(200,184,100,.15); }
.cd-item-badge.cd-c-forum    { background: rgba(80,208,170,.12); }
.cd-item-badge.cd-c-career   { background: rgba(150,150,255,.12); }
.cd-item-env { display: inline-block; font-size: 11px; font-weight: 500; color: #6B7280; margin-left: 8px; padding: 2px 8px; border-radius: 4px; background: rgba(249,160,63,.08); border: 1px solid rgba(249,160,63,.18); vertical-align: middle; }
[data-theme="dark"] .cd-item-env { color: #c8b89a; background: rgba(249,160,63,.10); border-color: rgba(249,160,63,.22); }
.cd-item-duration { font-size: 12px; color: #9CA3AF; font-family: monospace; white-space: nowrap; }

.cd-enroll { padding: 48px 0 64px; background: linear-gradient(135deg, rgba(0,32,237,.04), rgba(0,132,254,.04)); }
.cd-enroll-card { background: #fff; border: 1px solid #E5E9F2; border-radius: 16px; padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: 0 4px 24px rgba(0,0,0,.04); }
.cd-enroll-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6B7280; font-weight: 600; margin-bottom: 6px; }
.cd-enroll-price { font-size: 32px; font-weight: 800; color: #1A2138; margin: 0 0 4px; letter-spacing: -.02em; }
.cd-enroll-format { color: #6B7280; margin: 0; }
.cd-enroll-form { margin: 0; }

@media (max-width: 820px) {
  .cd-hero-grid { grid-template-columns: 1fr; }
  .cd-meta-grid { grid-template-columns: repeat(4, 1fr); min-width: 0; }
  .cd-item { grid-template-columns: 32px 1fr; }
  .cd-item-duration { display: none; }
  .cd-enroll-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .cd-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-comp-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-section { padding: 28px 0; }
}

/* =============================================================================
   DARK THEME (opt-in via [data-theme="dark"] on <html>; cookie persists choice
   so the EJS header SSR-renders the right logo on first paint).
   ========================================================================== */
[data-theme="dark"] {
  --secondary: #e8edf8;
  --text: #e8edf8;
  --text-light: #9aa6c0;
  --bg: #0a0d14;
  --bg-alt: #111520;
  --bg-dark: #050810;
  --border: #232b40;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}
[data-theme="dark"] body { background: var(--bg); color: var(--text); }

/* Header / nav */
[data-theme="dark"] .navbar { background: rgba(10, 13, 20, 0.92); border-bottom-color: var(--border); }
[data-theme="dark"] .nav-menu a { color: var(--text); }
[data-theme="dark"] .nav-menu a:hover { color: var(--accent); }
[data-theme="dark"] .nav-toggle span { background: var(--text); }

/* Footer */
[data-theme="dark"] .footer { background: #050810; border-top-color: var(--border); }

/* Generic surfaces */
[data-theme="dark"] .section { background: var(--bg); }
[data-theme="dark"] .section-alt,
[data-theme="dark"] .bg-alt { background: var(--bg-alt); }
[data-theme="dark"] .card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .course-card,
[data-theme="dark"] .lab-card { background: var(--bg-alt); border-color: var(--border); color: var(--text); }

/* Tables */
[data-theme="dark"] table th { background: var(--bg-alt); color: var(--text); }
[data-theme="dark"] table td { border-color: var(--border); color: var(--text); }

/* Forms */
[data-theme="dark"] input, [data-theme="dark"] textarea, [data-theme="dark"] select {
  background: var(--bg-alt); color: var(--text); border-color: var(--border);
}
[data-theme="dark"] input::placeholder, [data-theme="dark"] textarea::placeholder { color: var(--text-light); }

/* Buttons */
[data-theme="dark"] .btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
[data-theme="dark"] .btn-outline:hover { background: var(--accent); color: #fff; }

/* ---- Course detail page (dark) ---- */
[data-theme="dark"] .cd-hero {
  background: linear-gradient(180deg, #11162a 0%, var(--bg) 100%);
  border-bottom-color: var(--border);
}
[data-theme="dark"] .cd-hero::before {
  background:
    radial-gradient(ellipse 60% 60% at 80% -10%, rgba(0,132,254,.15) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 10% 110%, rgba(56,217,169,.10) 0%, transparent 60%);
}
[data-theme="dark"] .cd-tag { background: rgba(0,132,254,.18); color: #6fa3ff; }
[data-theme="dark"] .cd-title { color: var(--text); }
[data-theme="dark"] .cd-tagline,
[data-theme="dark"] .cd-desc,
[data-theme="dark"] .cd-meta-l,
[data-theme="dark"] .cd-comp-l,
[data-theme="dark"] .cd-module-subtitle,
[data-theme="dark"] .cd-module-hrs,
[data-theme="dark"] .cd-item-detail,
[data-theme="dark"] .cd-legend-item,
[data-theme="dark"] .cd-enroll-format { color: var(--text-light); }
[data-theme="dark"] .cd-section-label { color: #6a779a; border-bottom-color: var(--border); }
[data-theme="dark"] .cd-meta-box,
[data-theme="dark"] .cd-outcome-card,
[data-theme="dark"] .cd-comp-card,
[data-theme="dark"] .cd-legend,
[data-theme="dark"] .cd-module,
[data-theme="dark"] .cd-enroll-card { background: var(--bg-alt); border-color: var(--border); color: var(--text); }
[data-theme="dark"] .cd-meta-n { color: #6fa3ff; }
[data-theme="dark"] .cd-outcome-card { color: var(--text); }
[data-theme="dark"] .cd-outcome-card:hover { box-shadow: 0 4px 16px rgba(0,132,254,.2); }
[data-theme="dark"] .cd-module[open] { border-color: rgba(0,132,254,.5); }
[data-theme="dark"] .cd-module-header:hover { background: rgba(0,132,254,.06); }
[data-theme="dark"] .cd-module-num { background: rgba(0,132,254,.18); color: #6fa3ff; }
[data-theme="dark"] .cd-module-title { color: var(--text); }
[data-theme="dark"] .cd-module-body { border-top-color: var(--border); }
[data-theme="dark"] .cd-item:hover { background: rgba(255,255,255,0.03); }
[data-theme="dark"] .cd-item-name { color: var(--text); }
[data-theme="dark"] .cd-item-duration { color: #5d6a87; }
[data-theme="dark"] .cd-chevron { background: var(--bg); color: var(--text-light); }
[data-theme="dark"] .cd-enroll {
  background: linear-gradient(135deg, rgba(0,32,237,.12), rgba(0,132,254,.10));
}
[data-theme="dark"] .cd-enroll-label { color: var(--text-light); }
[data-theme="dark"] .cd-enroll-price { color: var(--text); }

/* Type-color brightenings for dark — same hue, brighter so they pop */
[data-theme="dark"] .cd-c-lecture { color: #6fa3ff; }
[data-theme="dark"] .cd-c-reading { color: #d4cf80; }
[data-theme="dark"] .cd-c-lecture-bg  { background: rgba(0,132,254,.20); color: #6fa3ff; }
[data-theme="dark"] .cd-c-exercise-bg { background: rgba(56,217,169,.20); color: #5fe5ba; }
[data-theme="dark"] .cd-c-lab-bg      { background: rgba(249,160,63,.20); color: #fbb86d; }
[data-theme="dark"] .cd-c-quiz-bg     { background: rgba(224,92,138,.20); color: #ed8aae; }
[data-theme="dark"] .cd-c-project-bg  { background: rgba(160,100,240,.20); color: #c79bff; }
[data-theme="dark"] .cd-c-capstone-bg { background: rgba(255,180,50,.20); color: #ffce5e; }
[data-theme="dark"] .cd-c-activity-bg { background: rgba(100,180,240,.20); color: #82c4f0; }
[data-theme="dark"] .cd-c-reading-bg  { background: rgba(200,184,100,.20); color: #d4cf80; }
[data-theme="dark"] .cd-c-forum-bg    { background: rgba(80,208,170,.20); color: #6fdcb8; }
[data-theme="dark"] .cd-c-career-bg   { background: rgba(150,150,255,.22); color: #b1b1ff; }
[data-theme="dark"] .cd-item-badge.cd-c-lecture  { background: rgba(0,132,254,.18); }
[data-theme="dark"] .cd-item-badge.cd-c-exercise { background: rgba(56,217,169,.18); }
[data-theme="dark"] .cd-item-badge.cd-c-lab      { background: rgba(249,160,63,.18); }
[data-theme="dark"] .cd-item-badge.cd-c-quiz     { background: rgba(224,92,138,.18); }
[data-theme="dark"] .cd-item-badge.cd-c-project  { background: rgba(160,100,240,.18); }
[data-theme="dark"] .cd-item-badge.cd-c-capstone { background: rgba(255,180,50,.20); }
[data-theme="dark"] .cd-item-badge.cd-c-activity { background: rgba(100,180,240,.18); }
[data-theme="dark"] .cd-item-badge.cd-c-reading  { background: rgba(200,184,100,.20); }
[data-theme="dark"] .cd-item-badge.cd-c-forum    { background: rgba(80,208,170,.18); }
[data-theme="dark"] .cd-item-badge.cd-c-career   { background: rgba(150,150,255,.20); }

/* ---- Theme toggle button (sun/moon in header) ---- */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px; height: 38px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-left: 0.5rem;
}
.theme-toggle:hover { background: var(--bg-alt); border-color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .tt-sun  { display: none; }
.theme-toggle .tt-moon { display: block; }
[data-theme="dark"] .theme-toggle .tt-sun  { display: block; color: #ffd166; }
[data-theme="dark"] .theme-toggle .tt-moon { display: none; }

/* =============================================================================
   CONTACT PAGE — fresh layout. Hero + 2-col grid (info card | form card).
   Same design tokens as the rest of the biz site; full dark-mode support.
   ========================================================================== */
.contact-hero {
  position: relative;
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #FAFCFF 0%, #F4F6FB 100%);
  border-bottom: 1px solid #E5E9F2;
  overflow: hidden;
}
.contact-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% -10%, rgba(0,132,254,.08) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 10% 110%, rgba(56,217,169,.06) 0%, transparent 60%);
  pointer-events: none;
}
.contact-hero-inner { position: relative; max-width: 720px; }
.contact-eyebrow {
  display: inline-block; background: rgba(0,132,254,.1); color: #0084FE;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border-radius: 30px; margin-bottom: 16px;
}
.contact-hero h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em;
  line-height: 1.15; color: #1A2138; margin: 0 0 14px;
}
.contact-hero p { font-size: 17px; color: #6B7280; line-height: 1.6; margin: 0; max-width: 560px; }

.contact-section { padding: 48px 0 80px; background: #F4F6FB; }

.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Left: info card ---- */
.contact-info-card {
  background: #fff;
  border: 1px solid #E5E9F2;
  border-radius: 14px;
  padding: 32px 28px;
  position: sticky; top: 90px;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
@media (max-width: 920px) { .contact-info-card { position: static; } }
.contact-info-title {
  font-size: 22px; font-weight: 700; color: #1A2138; margin: 0 0 6px;
  letter-spacing: -.01em;
}
.contact-info-sub { color: #6B7280; font-size: 14px; margin: 0 0 24px; }

.contact-channel {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #F0F2F7;
  text-decoration: none;
  color: inherit;
  transition: opacity .15s;
}
.contact-channel:last-of-type { border-bottom: none; }
.contact-channel:hover:not(.contact-channel-static) { opacity: .85; }
.contact-channel-static { cursor: default; }
.contact-channel-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0,132,254,.1); color: #0084FE;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-channel-icon svg { width: 18px; height: 18px; }
.contact-channel-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-channel-label {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: #9CA3AF; font-weight: 600;
}
.contact-channel-value { font-size: 15px; color: #1A2138; line-height: 1.5; word-break: break-word; }

.contact-info-footer {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid #F0F2F7;
}
.contact-info-footer p { color: #6B7280; font-size: 13.5px; margin: 0; }
.contact-info-footer a { color: #0084FE; font-weight: 600; text-decoration: none; }
.contact-info-footer a:hover { text-decoration: underline; }

/* ---- Right: form card ---- */
.contact-form-card {
  background: #fff;
  border: 1px solid #E5E9F2;
  border-radius: 14px;
  padding: 36px 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
@media (max-width: 600px) { .contact-form-card { padding: 24px 20px; } }
.contact-form-title {
  font-size: 22px; font-weight: 700; color: #1A2138; margin: 0 0 6px;
  letter-spacing: -.01em;
}
.contact-form-sub { color: #6B7280; font-size: 14px; margin: 0 0 24px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 600px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-form .form-group { margin: 0; }
.contact-form label {
  display: block; margin-bottom: 8px;
  font-size: 13px; font-weight: 600; color: #1A2138;
}
.contact-form .required { color: #e05c8a; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #E5E9F2; border-radius: 8px;
  font-size: 14.5px; font-family: inherit; color: #1A2138;
  background: #FAFCFF;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9CA3AF; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0084FE;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,132,254,.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form-submit {
  margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.contact-form-submit svg { width: 18px; height: 18px; }
.contact-form-footnote {
  margin: 4px 0 0; font-size: 12.5px; color: #9CA3AF; text-align: center;
}

/* ---- Success / error states ---- */
.contact-success { text-align: center; padding: 16px 8px; }
.contact-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(56,217,169,.15);
  color: #0EA56F;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-success-icon svg { width: 38px; height: 38px; }
.contact-success h2 { font-size: 24px; margin: 0 0 8px; color: #1A2138; }
.contact-success p { color: #6B7280; margin: 0 0 22px; max-width: 380px; margin-left: auto; margin-right: auto; }
.contact-error {
  background: rgba(224,92,138,.08); border: 1px solid rgba(224,92,138,.3);
  color: #b03a64; padding: 12px 14px; border-radius: 8px;
  font-size: 14px; margin-bottom: 18px;
}

/* ---- Dark mode overrides ---- */
[data-theme="dark"] .contact-hero {
  background: linear-gradient(180deg, #11162a 0%, #0a0d14 100%);
  border-bottom-color: #232b40;
}
[data-theme="dark"] .contact-hero::before {
  background:
    radial-gradient(ellipse 60% 50% at 80% -10%, rgba(0,132,254,.15) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 10% 110%, rgba(56,217,169,.10) 0%, transparent 60%);
}
[data-theme="dark"] .contact-eyebrow { background: rgba(0,132,254,.18); color: #6fa3ff; }
[data-theme="dark"] .contact-hero h1 { color: #e8edf8; }
[data-theme="dark"] .contact-hero p { color: #9aa6c0; }

[data-theme="dark"] .contact-section { background: #0a0d14; }
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-card {
  background: #111520; border-color: #232b40;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
[data-theme="dark"] .contact-info-title,
[data-theme="dark"] .contact-form-title { color: #e8edf8; }
[data-theme="dark"] .contact-info-sub,
[data-theme="dark"] .contact-form-sub,
[data-theme="dark"] .contact-info-footer p { color: #9aa6c0; }
[data-theme="dark"] .contact-channel { border-bottom-color: rgba(255,255,255,.06); }
[data-theme="dark"] .contact-channel-icon { background: rgba(0,132,254,.18); color: #6fa3ff; }
[data-theme="dark"] .contact-channel-label { color: #6a779a; }
[data-theme="dark"] .contact-channel-value { color: #e8edf8; }
[data-theme="dark"] .contact-info-footer { border-top-color: rgba(255,255,255,.06); }
[data-theme="dark"] .contact-info-footer a { color: #6fa3ff; }
[data-theme="dark"] .contact-form label { color: #e8edf8; }
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
  background: #0a0d14; border-color: #232b40; color: #e8edf8;
}
[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder { color: #6a779a; }
[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form textarea:focus {
  border-color: #6fa3ff; background: #11162a;
  box-shadow: 0 0 0 3px rgba(111,163,255,.18);
}
[data-theme="dark"] .contact-form-footnote { color: #6a779a; }
[data-theme="dark"] .contact-success-icon { background: rgba(56,217,169,.20); color: #5fe5ba; }
[data-theme="dark"] .contact-success h2 { color: #e8edf8; }
[data-theme="dark"] .contact-success p { color: #9aa6c0; }
[data-theme="dark"] .contact-error {
  background: rgba(224,92,138,.15); border-color: rgba(224,92,138,.45); color: #ed8aae;
}

/* Payment-plan radio options on the course-detail Enrollment CTA */
.cd-pay-options { border: none; padding: 0; margin: 0 0 16px; min-width: 320px; }
.cd-pay-options-label {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: #6B7280; font-weight: 600; margin-bottom: 10px; padding: 0;
}
.cd-pay-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border: 1px solid #E5E9F2; border-radius: 10px;
  background: #fff;
  cursor: pointer;
  margin-bottom: 8px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.cd-pay-option:hover { border-color: rgba(0,132,254,.4); }
.cd-pay-option input[type="radio"] {
  margin: 3px 0 0; flex-shrink: 0;
  accent-color: #0084FE;
  width: 18px; height: 18px;
}
.cd-pay-option:has(input:checked) {
  border-color: #0084FE;
  background: rgba(0,132,254,.04);
  box-shadow: 0 0 0 3px rgba(0,132,254,.10);
}
.cd-pay-option-body { display: flex; flex-direction: column; gap: 2px; }
.cd-pay-option-title {
  font-size: 14.5px; font-weight: 600; color: #1A2138;
}
.cd-pay-option-meta {
  font-size: 12.5px; color: #6B7280; line-height: 1.5;
}

/* Dark mode */
[data-theme="dark"] .cd-pay-options-label { color: #9aa6c0; }
[data-theme="dark"] .cd-pay-option { background: #0a0d14; border-color: #232b40; }
[data-theme="dark"] .cd-pay-option:hover { border-color: rgba(111,163,255,.5); }
[data-theme="dark"] .cd-pay-option:has(input:checked) {
  border-color: #6fa3ff; background: rgba(0,132,254,.10);
  box-shadow: 0 0 0 3px rgba(111,163,255,.18);
}
[data-theme="dark"] .cd-pay-option-title { color: #e8edf8; }
[data-theme="dark"] .cd-pay-option-meta { color: #9aa6c0; }

/* Tighter enrollment card on small screens */
@media (max-width: 600px) {
  .cd-pay-options { min-width: 0; width: 100%; }
}

/* =========================================================================
   AI TOOLS — listing + tool detail pages
   ========================================================================= */

/* --- Tools listing --- */
.tools-listing-hero {
  background: linear-gradient(135deg, #060610 0%, #151540 55%, #0014A8 100%);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.tools-listing-hero::after {
  content: '';
  position: absolute; top: -80px; right: 0;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,132,254,.14) 0%, transparent 65%);
  pointer-events: none;
}
.tools-listing-hero-inner { max-width: 640px; position: relative; z-index: 1; }
.tools-listing-badge {
  display: inline-block; background: rgba(0,132,254,.2); border: 1px solid rgba(0,132,254,.4);
  color: #6FA3FF; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 1.25rem;
}
.tools-listing-hero h1 { font-size: 2.8rem; font-weight: 900; color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.tools-listing-hero p  { color: rgba(255,255,255,.72); font-size: 1.1rem; line-height: 1.65; }

.tools-listing-body { padding: 4rem 0; }

.tools-cat-section { margin-bottom: 3rem; }
.tools-cat-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.tools-cat-header h2 { font-size: 1.3rem; font-weight: 800; margin: 0; }
.tools-cat-count {
  font-size: 12px; font-weight: 700; padding: 3px 11px; border-radius: 20px;
  background: rgba(0,32,237,.08); color: #0020ED; border: 1px solid rgba(0,32,237,.15);
}
[data-theme="dark"] .tools-cat-count { background: rgba(0,132,254,.12); color: #6FA3FF; border-color: rgba(0,132,254,.2); }

.tools-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1rem;
}
.tools-listing-card {
  display: flex; align-items: center; gap: 1.1rem;
  background: #fff; border: 1px solid #e5e8f0;
  border-radius: 14px; padding: 1.25rem 1rem 1.25rem 1.25rem;
  text-decoration: none; color: inherit;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.tools-listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,32,237,.10);
  border-color: rgba(0,132,254,.4);
}
.tools-listing-card-emoji { font-size: 2rem; flex-shrink: 0; }
.tools-listing-card-body { flex: 1; min-width: 0; }
.tools-listing-card-body h3 { font-size: 0.95rem; font-weight: 700; margin: 0 0 4px; color: #111; }
.tools-listing-card-body p  { font-size: 0.82rem; color: #6B7280; margin: 0; line-height: 1.4; }
.tools-listing-card-arrow { width: 18px; height: 18px; color: #9CA3AF; flex-shrink: 0; transition: transform 0.15s, color 0.15s; }
.tools-listing-card:hover .tools-listing-card-arrow { color: #0084FE; transform: translateX(3px); }

[data-theme="dark"] .tools-listing-card { background: #16162a; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .tools-listing-card-body h3 { color: #e8edf8; }
[data-theme="dark"] .tools-listing-card-body p  { color: #8899b8; }

.tools-listing-cta { padding: 4rem 0; background: linear-gradient(135deg, rgba(0,32,237,.04), rgba(0,132,254,.04)); }
.tools-listing-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background: #fff; border: 1px solid #e5e8f0;
  border-radius: 20px; padding: 2.5rem 3rem;
}
.tools-listing-cta-text h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 0.5rem; }
.tools-listing-cta-text p  { color: #6B7280; margin: 0; }
.tools-listing-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
[data-theme="dark"] .tools-listing-cta-inner { background: #16162a; border-color: rgba(255,255,255,.08); }

/* --- Tool detail page --- */
.tool-detail-page {}

.tool-detail-breadcrumb {
  background: #f8f9fc; border-bottom: 1px solid #e5e8f0;
  padding: 0.75rem 0;
}
.tool-detail-breadcrumb .container {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
}
.tool-detail-breadcrumb a { color: #0084FE; text-decoration: none; }
.tool-detail-breadcrumb a:hover { text-decoration: underline; }
.tool-detail-breadcrumb svg { width: 14px; height: 14px; color: #9CA3AF; }
.tool-detail-breadcrumb span { color: #6B7280; }
[data-theme="dark"] .tool-detail-breadcrumb { background: #0f0f1a; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .tool-detail-breadcrumb span { color: #8899b8; }

.tool-detail-hero {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #060610 0%, #151540 55%, #0014A8 100%);
  position: relative; overflow: hidden;
}
.tool-detail-hero::after {
  content: '';
  position: absolute; bottom: -100px; right: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,132,254,.15) 0%, transparent 65%);
  pointer-events: none;
}
.tool-detail-hero-inner {
  display: grid; grid-template-columns: 1fr 340px; gap: 3rem;
  align-items: center; position: relative; z-index: 1;
}
@media (max-width: 900px) { .tool-detail-hero-inner { grid-template-columns: 1fr; } }

.tool-detail-category {
  display: inline-block; background: rgba(0,132,254,.2); border: 1px solid rgba(0,132,254,.35);
  color: #6FA3FF; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  padding: 3px 12px; border-radius: 20px; margin-bottom: 1.25rem;
}
.tool-detail-title-row { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1rem; }
.tool-detail-emoji { font-size: 2.8rem; line-height: 1; flex-shrink: 0; }
.tool-detail-title-row h1 { font-size: 2.1rem; font-weight: 900; color: #fff; margin: 0 0 4px; line-height: 1.15; }
.tool-detail-tagline { color: rgba(255,255,255,.65); font-size: 1rem; margin: 0; }
.tool-detail-description { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.6; margin-bottom: 1.75rem; }

.tool-detail-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.tool-detail-hero-actions .btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
}
.tool-detail-hero-actions .btn-primary svg { width: 16px; height: 16px; }

/* Output preview card */
.tool-detail-preview-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 1.5rem; backdrop-filter: blur(8px);
}
.tool-detail-preview-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem;
}
.tool-detail-preview-emoji { font-size: 1.5rem; }
.tool-detail-preview-label { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.06em; }
.tool-detail-preview-lines { display: flex; flex-direction: column; gap: 8px; }
.tool-detail-preview-line {
  height: 10px; border-radius: 5px;
  background: rgba(255,255,255,.12);
  animation: shimmer 2s ease-in-out infinite alternate;
}
.tool-detail-preview-line--heading { height: 13px; background: rgba(0,132,254,.3); width: 55%; }
.tool-detail-preview-line--short { width: 65%; }
@keyframes shimmer { from { opacity: 0.6; } to { opacity: 1; } }

/* How it works */
.tool-detail-how { padding: 5rem 0; }
.tool-detail-how h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 2.5rem; text-align: center; }
.tool-detail-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.tool-detail-step {
  display: flex; gap: 1.25rem;
  background: #fff; border: 1px solid #e5e8f0; border-radius: 14px; padding: 1.5rem;
}
.tool-detail-step-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #0084FE, #0020ED);
  color: #fff; font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.tool-detail-step-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.tool-detail-step-body p  { font-size: 0.88rem; color: #6B7280; margin: 0; line-height: 1.55; }
[data-theme="dark"] .tool-detail-step { background: #16162a; border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .tool-detail-step-body h3 { color: #e8edf8; }
[data-theme="dark"] .tool-detail-step-body p  { color: #8899b8; }

/* Benefits */
.tool-detail-benefits { padding: 4rem 0; background: #f8f9fc; }
[data-theme="dark"] .tool-detail-benefits { background: #0f0f1a; }
.tool-detail-benefits h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; text-align: center; }
.tool-detail-benefits-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; list-style: none; padding: 0; margin: 0;
}
.tool-detail-benefits-list li {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff; border: 1px solid #e5e8f0; border-radius: 12px;
  padding: 1rem 1.25rem; font-size: 0.92rem; font-weight: 600; color: #1a1a2e;
}
.tool-detail-benefits-list li svg {
  width: 18px; height: 18px; color: #0084FE; flex-shrink: 0; margin-top: 1px;
}
[data-theme="dark"] .tool-detail-benefits-list li { background: #16162a; border-color: rgba(255,255,255,.08); color: #e8edf8; }

/* CTA */
.tool-detail-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #060610 0%, #151540 55%, #0014A8 100%);
  text-align: center;
}
.tool-detail-cta-inner { max-width: 560px; margin: 0 auto; }
.tool-detail-cta h2 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 1rem; }
.tool-detail-cta p  { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 2rem; }

@media (max-width: 640px) {
  .tools-listing-hero h1  { font-size: 2rem; }
  .tool-detail-title-row h1 { font-size: 1.6rem; }
  .tools-listing-cta-inner { padding: 2rem; }
}

/* ================================================================
   ENTERPRISE PAGE — Enhanced
   ================================================================ */

/* Hero */
.ent-hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #0a1560 50%, #0020ED 100%);
  padding: 5rem 0 4rem;
  color: #fff;
}
.ent-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ent-hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.ent-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.ent-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ent-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ent-trust-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ent-trust-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.ent-trust-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ent-trust-pills span {
  font-size: 0.75rem;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.ent-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.ent-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.ent-stat-n {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.ent-stat-l {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* Proof bar */
.ent-proof-bar {
  background: var(--primary);
  padding: 1.25rem 0;
}
.ent-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ent-proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ent-proof-n {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
}
.ent-proof-t {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.ent-proof-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.25);
}

/* ROI Calculator */
.roi-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.roi-inputs { display: flex; flex-direction: column; gap: 1.5rem; }
.roi-field { display: flex; flex-direction: column; gap: 0.5rem; }
.roi-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.roi-slider-row { display: flex; align-items: center; gap: 1rem; }
.roi-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--primary-light);
  outline: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}
.roi-slider-val {
  min-width: 40px;
  text-align: right;
  font-weight: 700;
  color: var(--primary);
}
.roi-select {
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
}
.roi-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.roi-result-card {
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 2px solid transparent;
}
.roi-result-bad   { background: #fff5f5; border-color: #ffcdd2; }
.roi-result-good  { background: #f0f8ff; border-color: #bbdefb; }
.roi-result-savings { background: #e8f5e9; border-color: #c8e6c9; }
.roi-result-time  { background: var(--bg-alt); border-color: var(--border); }
.roi-result-label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.roi-result-n     { font-size: 1.8rem; font-weight: 900; color: var(--text); }
.roi-result-bad .roi-result-n { color: #c62828; }
.roi-result-good .roi-result-n { color: #1565c0; }
.roi-result-savings .roi-result-n { color: #2e7d32; }
.roi-result-sub   { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; }
.roi-disclaimer   { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 1.5rem; }

/* Industry tabs */
.ent-industry-tabs { display: flex; flex-direction: column; gap: 0; }
.ent-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}
.ent-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.ent-tab-btn:hover { color: var(--primary); }
.ent-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.ent-tab-panels { margin-top: 2rem; }
.ent-tab-panel { display: none; }
.ent-tab-panel.active { display: block; }
.ent-tab-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.ent-tab-text h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 0.75rem; }
.ent-tab-text p  { color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.ent-tab-list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; padding-left: 0; }
.ent-tab-list li { font-size: 0.9rem; color: var(--text); padding-left: 1.4rem; position: relative; }
.ent-tab-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.ent-tab-courses { font-size: 0.85rem; color: var(--text-light); background: var(--bg-alt); padding: 0.6rem 1rem; border-radius: 8px; border-left: 3px solid var(--primary); }
.ent-tab-stat-col { display: flex; flex-direction: column; gap: 1.25rem; }
.ent-tab-stat {
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.ent-tab-stat-n { font-size: 2rem; font-weight: 900; color: var(--primary); }
.ent-tab-stat-l { font-size: 0.82rem; color: var(--text-light); margin-top: 0.25rem; }

/* Catalog grid */
.ent-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.ent-catalog-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color var(--transition);
}
.ent-catalog-item:hover { border-color: var(--primary); }
.ent-catalog-icon { font-size: 1.1rem; }

/* How it works (6-step grid) */
.ent-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ent-how-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: box-shadow var(--transition);
}
.ent-how-card:hover { box-shadow: var(--shadow); }
.ent-how-num {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.ent-how-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.ent-how-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.ent-how-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.75rem; }
.ent-how-time { font-size: 0.78rem; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 0.2rem 0.6rem; border-radius: 100px; display: inline-block; }

/* Platform features grid */
.ent-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ent-feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.ent-feature-card:hover { box-shadow: var(--shadow); }
.ent-feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.ent-feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.ent-feature-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* Testimonials */
.ent-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ent-testi-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ent-testi-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.ent-testi-quote::before { content: '"'; font-size: 2rem; color: var(--primary); line-height: 0; vertical-align: -0.5rem; margin-right: 0.25rem; }
.ent-testi-author { display: flex; align-items: center; gap: 0.75rem; }
.ent-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.ent-testi-name { font-weight: 700; font-size: 0.88rem; }
.ent-testi-co   { font-size: 0.78rem; color: var(--text-light); }

/* Feature comparison table */
.ent-compare-wrap { overflow-x: auto; }
.ent-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.ent-compare th {
  background: var(--bg-alt);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}
.ent-compare th.ent-compare-feature-col { text-align: left; }
.ent-compare .ent-compare-price { font-size: 0.78rem; font-weight: 500; color: var(--text-light); display: block; }
.ent-compare td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.ent-compare td:first-child { text-align: left; font-weight: 500; }
.ent-compare tr:hover td { background: var(--bg-alt); }
.ent-compare .ent-compare-highlight { background: var(--primary-light); }
.ent-compare th.ent-compare-highlight { background: var(--primary); color: #fff; }
.ent-compare th.ent-compare-highlight .ent-compare-price { color: rgba(255,255,255,0.75); }

/* FAQ */
.ent-faq { display: flex; flex-direction: column; gap: 0; }
.ent-faq-item {
  border-bottom: 1px solid var(--border);
}
.ent-faq-item:first-child { border-top: 1px solid var(--border); }
.ent-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
}
.ent-faq-q::-webkit-details-marker { display: none; }
.ent-faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
details[open] .ent-faq-q::after { content: '−'; }
.ent-faq-a {
  padding: 0 0 1.25rem;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Demo request form */
.ent-demo-section { background: var(--bg-alt); }
.ent-demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
}
.ent-demo-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
.ent-demo-text p  { color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.ent-demo-perks { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.ent-demo-perks li { font-size: 0.9rem; color: var(--text); }
.ent-demo-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--text-light); }
.ent-demo-contact a { color: var(--primary); }
.ent-demo-form { display: flex; flex-direction: column; gap: 1rem; }
.ent-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ent-form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.ent-form-field label { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.ent-form-field input,
.ent-form-field select,
.ent-form-field textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  font-family: inherit;
}
.ent-form-field input:focus,
.ent-form-field select:focus,
.ent-form-field textarea:focus { outline: none; border-color: var(--primary); }
.ent-form-privacy { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.5rem; }

/* ================================================================
   SOLUTIONS (INDUSTRY LANDING) PAGES
   ================================================================ */

.sol-hero {
  background: linear-gradient(135deg, #0a0a1a 0%, color-mix(in srgb, var(--sol-color) 30%, #0a0a1a) 100%);
  padding: 5rem 0 4rem;
  color: #fff;
}
.sol-back { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; }
.sol-back:hover { color: #fff; }
.sol-hero-eyebrow { margin-bottom: 1.5rem; }
.sol-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
}
.sol-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}
.sol-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.sol-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 2rem; }
.sol-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.sol-hero-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.sol-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--sol-color);
}
.sol-stat-n { font-size: 2rem; font-weight: 900; color: #fff; }
.sol-stat-l { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

/* Use cases */
.sol-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sol-usecase-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 4px solid var(--sol-color);
  transition: box-shadow var(--transition);
}
.sol-usecase-card:hover { box-shadow: var(--shadow); }
.sol-usecase-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.sol-usecase-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.sol-usecase-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* Recommended courses */
.sol-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.sol-course-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow var(--transition);
}
.sol-course-card:hover { box-shadow: var(--shadow); }
.sol-course-level {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}
.sol-level-beginner { background: #e8f5e9; color: #2e7d32; }
.sol-level-intermediate { background: #e8eaf6; color: #283593; }
.sol-level-advanced { background: #fce4ec; color: #880e4f; }
.sol-level-executive { background: #fff3e0; color: #e65100; }
.sol-course-card h3 { font-size: 1rem; font-weight: 700; }
.sol-course-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.sol-course-link { font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.sol-course-link:hover { text-decoration: underline; }

/* Role tracks */
.sol-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.sol-role-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  padding-top: 2.25rem;
  transition: box-shadow var(--transition);
}
.sol-role-card:hover { box-shadow: var(--shadow); }
.sol-role-num {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  width: 28px;
  height: 28px;
  background: var(--sol-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}
.sol-role-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.sol-role-courses { font-size: 0.82rem; color: var(--text-light); }

/* Market stats */
.sol-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.sol-market-stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--sol-color);
  box-shadow: var(--shadow);
}
.sol-market-n { font-size: 2.25rem; font-weight: 900; color: var(--sol-color); }
.sol-market-l { font-size: 0.82rem; color: var(--text-light); margin-top: 0.5rem; line-height: 1.5; }

/* Steps */
.sol-steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 720px; margin: 0 auto; }
.sol-step { display: flex; align-items: flex-start; gap: 1.25rem; }
.sol-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.sol-step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.sol-step-body p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* CTA section */
.sol-cta-section {
  background: linear-gradient(135deg, #0a0a1a 0%, color-mix(in srgb, var(--sol-color) 40%, #0a0a1a) 100%);
  padding: 5rem 0;
  color: #fff;
}
.sol-cta-icon { font-size: 3rem; margin-bottom: 1rem; }
.sol-cta-section h2 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 1rem; }
.sol-cta-section p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Other industries */
.sol-other-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.sol-other-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  text-decoration: none;
}
.sol-other-card:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow); }
.sol-other-card.sol-other-active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.sol-other-card span:first-child { font-size: 1.5rem; }

/* Solutions index */
.sol-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sol-index-card {
  display: block;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  border-top: 4px solid var(--sol-color);
}
.sol-index-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sol-index-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.sol-index-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.sol-index-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.sol-index-stats { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; padding: 0.5rem 0.75rem; background: var(--sol-color-light); border-radius: 6px; }
.sol-index-cta { font-size: 0.875rem; font-weight: 700; color: var(--sol-color); }

/* ================================================================
   NON-PROFIT PAGE
   ================================================================ */

:root {
  --np-green: #2e7d32;
  --np-green-dark: #1b5e20;
  --np-green-light: #e8f5e9;
  --np-green-mid: #c8e6c9;
}

.np-hero {
  background: linear-gradient(135deg, #0a1a0a 0%, #0d3b12 50%, #1b5e20 100%);
  padding: 5rem 0 4rem;
  color: #fff;
}
.np-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.np-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}
.np-hero-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.np-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.np-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-np-primary { background: #fff; color: var(--np-green-dark); border-color: #fff; font-weight: 700; }
.btn-np-primary:hover { background: var(--np-green-light); color: var(--np-green-dark); transform: translateY(-2px); }
.btn-np-outline { border: 2px solid rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-np-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.np-hero-orgs { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.np-hero-orgs-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.np-orgs-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.np-orgs-pills span { font-size: 0.75rem; padding: 0.2rem 0.75rem; border-radius: 100px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

/* Mission section */
.np-mission-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; }
.np-section-eyebrow { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--np-green); margin-bottom: 0.75rem; }
.np-mission-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.25; }
.np-mission-text p { color: var(--text-light); line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
.np-mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.np-mission-stat { background: var(--np-green-light); border-radius: var(--radius); padding: 1.25rem; text-align: center; border-top: 3px solid var(--np-green); }
.np-mission-n { font-size: 1.75rem; font-weight: 900; color: var(--np-green-dark); }
.np-mission-l { font-size: 0.78rem; color: #4a7c4f; margin-top: 0.25rem; }

/* Who we support grid */
.np-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.np-who-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 4px solid var(--np-green);
  transition: box-shadow var(--transition);
}
.np-who-card:hover { box-shadow: 0 4px 24px rgba(46,125,50,0.1); }
.np-who-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.np-who-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.np-who-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

/* Course paths */
.np-paths-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.np-path-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.np-path-card:hover { box-shadow: var(--shadow); }
.np-path-level {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.np-level-beginner  { background: var(--np-green-light); color: var(--np-green-dark); }
.np-level-intermediate { background: #e8eaf6; color: #283593; }
.np-level-executive { background: #fff3e0; color: #e65100; }
.np-path-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.np-path-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.75rem; }
.np-path-jobs { font-size: 0.8rem; color: var(--np-green); font-weight: 600; background: var(--np-green-light); padding: 0.4rem 0.75rem; border-radius: 6px; margin-bottom: 0.5rem; }
.np-path-duration { font-size: 0.8rem; color: var(--text-light); }

/* How it works steps */
.np-steps { display: flex; flex-direction: column; gap: 1.25rem; max-width: 700px; margin: 0 auto; }
.np-step { display: flex; align-items: flex-start; gap: 1.25rem; }
.np-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--np-green);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.np-step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.np-step-body p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

/* Benefits grid */
.np-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.np-benefit-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow var(--transition);
}
.np-benefit-card:hover { box-shadow: var(--shadow); }
.np-benefit-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.np-benefit-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.np-benefit-card p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* Testimonials */
.np-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.np-testi-card {
  background: var(--bg);
  border: 1.5px solid var(--np-green-mid);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.np-testi-quote { font-size: 0.93rem; color: var(--text); line-height: 1.75; font-style: italic; flex: 1; }
.np-testi-quote::before { content: '"'; font-size: 2rem; color: var(--np-green); line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; }
.np-testi-author { display: flex; align-items: center; gap: 0.75rem; }
.np-testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--np-green-light); color: var(--np-green-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.np-testi-name { font-weight: 700; font-size: 0.88rem; }
.np-testi-org  { font-size: 0.78rem; color: var(--text-light); }

/* Contact form */
.np-contact-section { background: var(--np-green-light); }
.np-contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 3rem; }
.np-contact-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
.np-contact-text p  { color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; font-size: 0.95rem; }
.np-contact-details { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--text-light); margin-bottom: 1.5rem; }
.np-contact-details a { color: var(--np-green); }
.np-contact-assurance { display: flex; flex-direction: column; gap: 0.4rem; }
.np-assurance-item { font-size: 0.875rem; color: var(--np-green-dark); font-weight: 500; }
.np-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.np-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.np-form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.np-form-field label { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.np-form-field input,
.np-form-field select,
.np-form-field textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  font-family: inherit;
}
.np-form-field input:focus,
.np-form-field select:focus,
.np-form-field textarea:focus { outline: none; border-color: var(--np-green); }
.np-form-privacy { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 0.5rem; }

/* Thank you page */
.np-thanks-icon { font-size: 4rem; margin-bottom: 1rem; }
.np-thanks-title { font-size: 2.25rem; font-weight: 900; margin-bottom: 1rem; }
.np-thanks-sub { font-size: 1.05rem; color: var(--text-light); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.np-thanks-next { background: var(--np-green-light); border-radius: var(--radius); padding: 2rem; max-width: 560px; margin: 0 auto 2rem; text-align: left; }
.np-thanks-next h3 { font-size: 1rem; font-weight: 700; color: var(--np-green-dark); margin-bottom: 1rem; }
.np-thanks-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.np-thanks-step { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text); }
.np-thanks-step-n { width: 24px; height: 24px; border-radius: 50%; background: var(--np-green); color: #fff; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ================================================================
   LIVE BATCHES — course detail page
   ================================================================ */

.cd-batches-section { background: var(--bg-alt); }
.cd-batches-sub { color: var(--text-light); font-size: 1rem; margin-bottom: 2rem; }
.cd-batch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.cd-batch-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.cd-batch-card:not(.cd-batch-full):hover { box-shadow: var(--shadow); border-color: var(--primary); }
.cd-batch-full { opacity: 0.65; }
.cd-batch-top { display: flex; align-items: center; justify-content: space-between; }
.cd-batch-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}
.cd-batch-status-upcoming { background: #e8eaf6; color: #283593; }
.cd-batch-status-active   { background: #e8f5e9; color: #2e7d32; }
.cd-batch-seats { font-size: 0.8rem; font-weight: 600; color: var(--primary); }
.cd-batch-seats-full { color: #e53e3e; }
.cd-batch-name { font-size: 1.05rem; font-weight: 800; color: var(--text); line-height: 1.3; margin: 0; }
.cd-batch-instructor { font-size: 0.82rem; color: var(--text-light); }
.cd-batch-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cd-batch-meta li { font-size: 0.85rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.cd-batch-meta-icon { font-size: 0.9rem; flex-shrink: 0; }
.cd-batch-price { font-size: 1.5rem; font-weight: 900; color: var(--text); margin-top: auto; }
.cd-batch-btn { width: 100%; margin-top: 0.25rem; }
.cd-batch-btn-disabled { background: var(--border); color: var(--text-light); cursor: not-allowed; border-color: var(--border); }

/* Batch payment modal */
.batch-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,8,16,0.75);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.batch-modal {
  background: var(--bg, #fff);
  border: 1px solid var(--border, #E0E4EB);
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
}
.batch-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-light);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.batch-modal-close:hover { background: var(--bg-alt); }
.batch-modal-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 0.25rem; padding-right: 2rem; line-height: 1.3; }
.batch-modal-sub { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* Dark theme overrides for the modal */
[data-theme="dark"] .batch-modal { background: #111520; border-color: #232b40; }
[data-theme="dark"] .batch-modal-close:hover { background: #1a1f30; }
[data-theme="dark"] .batch-modal .btn-outline {
  color: #9aa6c0;
  border-color: #232b40;
  background: transparent;
}
[data-theme="dark"] .batch-modal .btn-outline:hover { background: #1a1f30; color: #e8edf8; }

/* Admin badge variants for batch status */
.admin-badge-upcoming   { background: #e8eaf6; color: #283593; }
.admin-badge-active     { background: #e8f5e9; color: #2e7d32; }
.admin-badge-completed  { background: #f5f5f5; color: #555; }
.admin-badge-cancelled  { background: #fde8e8; color: #c53030; }
.admin-badge-paid       { background: #e8f5e9; color: #2e7d32; }
.admin-badge-pending    { background: #fff3e0; color: #e65100; }
.admin-badge-refunded   { background: #f5f5f5; color: #555; }

/* Admin danger button */
.btn-danger { background: #e53e3e; color: #fff; border-color: #e53e3e; }
.btn-danger:hover { background: #c53030; border-color: #c53030; }

/* Admin form grid */
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.admin-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.admin-form-group label { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  font-family: inherit;
  transition: border-color var(--transition);
}
.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus { outline: none; border-color: var(--primary); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .np-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .np-who-grid { grid-template-columns: repeat(2, 1fr); }
  .np-testimonials { grid-template-columns: 1fr; }
  .ent-how-grid { grid-template-columns: repeat(2, 1fr); }
  .ent-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ent-testimonials { grid-template-columns: 1fr; }
  .sol-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-other-grid { grid-template-columns: repeat(3, 1fr); }
  .sol-index-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cd-batch-grid { grid-template-columns: 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .np-mission-wrap { grid-template-columns: 1fr; }
  .np-who-grid { grid-template-columns: 1fr; }
  .np-paths-grid { grid-template-columns: 1fr; }
  .np-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .np-contact-wrap { grid-template-columns: 1fr; padding: 2rem; }
  .np-form-row { grid-template-columns: 1fr; }
  .ent-hero-grid { grid-template-columns: 1fr; }
  .ent-hero-stats { grid-template-columns: repeat(3, 1fr); }
  .roi-wrap { grid-template-columns: 1fr; }
  .roi-results { grid-template-columns: 1fr 1fr; }
  .ent-tab-content { grid-template-columns: 1fr; }
  .ent-how-grid { grid-template-columns: 1fr; }
  .ent-feature-grid { grid-template-columns: 1fr; }
  .ent-compare-wrap { overflow-x: auto; }
  .ent-demo-wrap { grid-template-columns: 1fr; padding: 2rem; }
  .ent-form-row { grid-template-columns: 1fr; }
  .sol-hero-grid { grid-template-columns: 1fr; }
  .sol-usecase-grid { grid-template-columns: 1fr 1fr; }
  .sol-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-other-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-index-grid { grid-template-columns: 1fr; }
  .ent-proof-inner { gap: 1rem; }
  .ent-proof-divider { display: none; }
}

/* =============================================================================
   BLOG
   ========================================================================== */
.blog-hero {
  background: linear-gradient(135deg, #0020ED 0%, #0084FE 100%);
  color: #fff;
  padding: 4.5rem 0 3rem;
  text-align: center;
}
.blog-hero-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.5rem; }
.blog-hero-title  { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin: 0 0 0.75rem; line-height: 1.2; }
.blog-hero-sub    { font-size: 1.05rem; opacity: 0.9; max-width: 640px; margin: 0 auto 1.25rem; }
.blog-hero-rss    { color: #fff; opacity: 0.85; font-size: 0.85rem; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.5); padding-bottom: 1px; }
.blog-hero-rss:hover { opacity: 1; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.blog-card {
  background: var(--bg, #fff); border: 1px solid var(--border, #E0E4EB);
  border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,32,237,0.10); border-color: var(--primary, #0020ED); }
.blog-card-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #EEF3FF, #E0F0FF); overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.blog-card-cat { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary, #0020ED); }
.blog-card-title { font-size: 1.08rem; font-weight: 800; line-height: 1.3; color: var(--text, #1A1A2A); margin: 0; }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-light, #6B7280); line-height: 1.5; margin: 0; flex: 1; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-light, #6B7280); display: flex; gap: 0.4rem; align-items: center; margin-top: auto; padding-top: 0.5rem; }

.blog-pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; }

/* Post detail */
.blog-post { background: var(--bg, #fff); }
.blog-post-hero img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.blog-post-container { max-width: 760px; padding: 2rem 1.5rem 3rem; }
.blog-post-meta-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-light, #6B7280); margin-bottom: 1rem; }
.blog-post-meta-top a { color: var(--primary, #0020ED); text-decoration: none; }
.blog-post-cat { background: rgba(0,32,237,0.08); color: var(--primary, #0020ED); padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.blog-post-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2; color: var(--text, #1A1A2A); margin: 0 0 1rem; }
.blog-post-meta { font-size: 0.9rem; color: var(--text-light, #6B7280); display: flex; gap: 0.5rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border, #E0E4EB); }

.blog-post-body { font-size: 1.05rem; line-height: 1.75; color: var(--text, #1A1A2A); }
.blog-post-body h2 { font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 1rem; color: var(--secondary, #0A0A14); }
.blog-post-body h3 { font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 0.75rem; color: var(--secondary, #0A0A14); }
.blog-post-body p { margin: 0 0 1.1rem; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 1.25rem 1.5rem; }
.blog-post-body li { margin-bottom: 0.5rem; }
.blog-post-body a { color: var(--primary, #0020ED); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.blog-post-body code { background: rgba(0,32,237,0.06); color: var(--primary, #0020ED); padding: 1px 6px; border-radius: 4px; font-size: 0.92em; font-family: 'Consolas', 'Menlo', monospace; }
.blog-post-body pre { background: #0A0A14; color: #E0EBFF; padding: 1.1rem 1.25rem; border-radius: 10px; overflow-x: auto; margin: 1.25rem 0; font-size: 0.9rem; line-height: 1.6; }
.blog-post-body pre code { background: transparent; color: inherit; padding: 0; }
.blog-post-body blockquote { border-left: 4px solid var(--primary, #0020ED); padding: 0.5rem 0 0.5rem 1.25rem; margin: 1.5rem 0; color: var(--text-light, #6B7280); font-style: italic; }

.blog-post-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 2rem 0; }
.blog-tag { background: var(--bg-alt, #F5F8FF); color: var(--text-light, #6B7280); padding: 4px 10px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }

.blog-post-cta {
  margin-top: 2.5rem; padding: 2rem; background: var(--bg-alt, #F5F8FF);
  border: 1px solid var(--border, #E0E4EB); border-radius: 14px; text-align: center;
}
.blog-post-cta h3 { font-size: 1.3rem; font-weight: 800; color: var(--text, #1A1A2A); margin: 0 0 0.5rem; }
.blog-post-cta p { color: var(--text-light, #6B7280); margin: 0 0 1rem; }

[data-theme="dark"] .blog-card-thumb { background: linear-gradient(135deg, #0f172a, #1e293b); }

/* =============================================================================
   BLOG PRO — redesigned blog index with featured post + filters + browse-by-cat
   ========================================================================== */

.blog-pro-hero {
  background: linear-gradient(135deg, #0726E5 0%, #0951F0 55%, #0A85FF 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-pro-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.blog-pro-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.88; margin-bottom: 0.85rem; position: relative;
}
.blog-pro-title {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.15;
  margin: 0 auto 1rem; max-width: 800px; letter-spacing: -1px; position: relative;
}
.blog-pro-sub {
  font-size: 1.05rem; opacity: 0.92; max-width: 680px; margin: 0 auto 1.75rem;
  line-height: 1.55; position: relative;
}
.blog-pro-search {
  display: flex; max-width: 540px; margin: 0 auto;
  background: rgba(255,255,255,0.98); border-radius: 100px; padding: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18); position: relative;
}
.blog-pro-search input {
  flex: 1; border: none; outline: none; padding: 0.7rem 1.1rem;
  font-size: 0.95rem; background: transparent; color: #1A1A2A; border-radius: 100px;
}
.blog-pro-search input::placeholder { color: #9CA3AF; }
.blog-pro-search button {
  background: linear-gradient(135deg, #0020ED, #0084FE); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; font-weight: 800;
  cursor: pointer; transition: transform 0.15s;
}
.blog-pro-search button:hover { transform: scale(1.05); }

.blog-pro-filter-strip {
  background: var(--bg-alt, #F5F8FF); border-bottom: 1px solid var(--border, #E0E4EB);
  padding: 1rem 0; position: sticky; top: 0; z-index: 100;
}
[data-theme="dark"] .blog-pro-filter-strip { background: var(--bg-alt); border-bottom-color: var(--border); }
.blog-pro-pills {
  display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin;
}
.blog-pro-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 1rem; border-radius: 100px;
  background: #fff; color: var(--text, #1A1A2A); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; white-space: nowrap; border: 1px solid var(--border, #E0E4EB);
  transition: all 0.15s;
}
.blog-pro-pill:hover { border-color: var(--primary, #0020ED); color: var(--primary, #0020ED); }
.blog-pro-pill.active { background: var(--primary, #0020ED); color: #fff; border-color: var(--primary, #0020ED); }
.blog-pro-pill-n {
  background: rgba(0,0,0,0.08); color: inherit; padding: 1px 7px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
}
.blog-pro-pill.active .blog-pro-pill-n { background: rgba(255,255,255,0.25); }
[data-theme="dark"] .blog-pro-pill { background: var(--bg-alt); }

.blog-pro-featured-section { padding-top: 2.5rem; padding-bottom: 1rem; }
.blog-pro-featured-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary, #0020ED); margin-bottom: 1rem;
}
.blog-pro-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; overflow: hidden;
  border: 1px solid var(--border, #E0E4EB); border-radius: 18px;
  text-decoration: none; color: inherit; background: var(--bg, #fff);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.blog-pro-featured:hover {
  transform: translateY(-4px); box-shadow: 0 18px 48px rgba(0,32,237,0.15);
  border-color: var(--primary, #0020ED);
}
.blog-pro-featured-thumb {
  background: linear-gradient(135deg, #EEF3FF, #E0F0FF); min-height: 360px;
}
.blog-pro-featured-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-pro-featured-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.blog-pro-featured-body {
  padding: 2.5rem 2.25rem; display: flex; flex-direction: column; gap: 0.6rem; justify-content: center;
}
.blog-pro-featured-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; line-height: 1.25;
  color: var(--text, #1A1A2A); margin: 0.25rem 0;
}
.blog-pro-featured-excerpt {
  font-size: 1rem; color: var(--text-light, #6B7280); line-height: 1.55; margin: 0;
}
.blog-pro-featured-meta {
  display: flex; gap: 0.4rem; font-size: 0.85rem; color: var(--text-light, #6B7280);
  margin-top: 0.6rem;
}
.blog-pro-featured-arrow {
  margin-top: 0.85rem; color: var(--primary, #0020ED); font-weight: 700; font-size: 0.95rem;
}
@media (max-width: 800px) {
  .blog-pro-featured { grid-template-columns: 1fr; }
  .blog-pro-featured-thumb { min-height: 240px; }
  .blog-pro-featured-body { padding: 1.75rem 1.5rem; }
}

.blog-pro-cat {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  background: rgba(0,32,237,0.08); color: var(--primary, #0020ED);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  width: fit-content;
}

.blog-pro-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem;
}
.blog-pro-card {
  background: var(--bg, #fff); border: 1px solid var(--border, #E0E4EB);
  border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.blog-pro-card:hover {
  transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,32,237,0.10);
  border-color: var(--primary, #0020ED);
}
.blog-pro-card-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #EEF3FF, #E0F0FF); overflow: hidden; }
.blog-pro-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-pro-card-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-pro-card-body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.blog-pro-card-title { font-size: 1.08rem; font-weight: 800; line-height: 1.3; color: var(--text, #1A1A2A); margin: 0; }
.blog-pro-card-excerpt { font-size: 0.88rem; color: var(--text-light, #6B7280); line-height: 1.5; margin: 0; flex: 1; }
.blog-pro-card-meta { font-size: 0.78rem; color: var(--text-light, #6B7280); display: flex; gap: 0.4rem; align-items: center; margin-top: auto; padding-top: 0.5rem; }

.blog-pro-pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; }

.blog-pro-empty { text-align: center; padding: 4rem 1rem; color: var(--text-light, #6B7280); }
.blog-pro-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.blog-pro-empty h3 { font-size: 1.25rem; color: var(--text, #1A1A2A); margin: 0 0 0.5rem; }
.blog-pro-empty a { color: var(--primary, #0020ED); }

.blog-pro-cta-strip { padding: 3rem 0; }
.blog-pro-cta-card {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center;
  background: linear-gradient(135deg, #0726E5, #0A85FF); color: #fff;
  padding: 2.5rem 2.75rem; border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0,32,237,0.18);
}
.blog-pro-cta-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.88; margin-bottom: 0.5rem;
}
.blog-pro-cta-card h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin: 0 0 0.5rem; line-height: 1.25; }
.blog-pro-cta-card p { opacity: 0.92; margin: 0; line-height: 1.55; }
.blog-pro-cta-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.blog-pro-cta-actions .btn { white-space: nowrap; }
.blog-pro-cta-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.blog-pro-cta-actions .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
@media (max-width: 760px) {
  .blog-pro-cta-card { grid-template-columns: 1fr; padding: 1.75rem 1.5rem; }
  .blog-pro-cta-actions { flex-direction: row; flex-wrap: wrap; }
}

.blog-pro-cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem;
  margin-top: 1rem;
}
.blog-pro-cat-card {
  background: var(--bg, #fff); border: 1px solid var(--border, #E0E4EB);
  border-radius: 14px; padding: 1.5rem 1.5rem 1.25rem;
  text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 0.4rem;
  transition: all 0.18s;
}
.blog-pro-cat-card:hover {
  transform: translateY(-3px); border-color: var(--primary, #0020ED); box-shadow: var(--shadow);
}
.blog-pro-cat-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.25rem; }
.blog-pro-cat-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--text, #1A1A2A); margin: 0; }
.blog-pro-cat-card p { font-size: 0.88rem; color: var(--text-light, #6B7280); line-height: 1.5; margin: 0; flex: 1; }
.blog-pro-cat-count { color: var(--primary, #0020ED); font-weight: 700; font-size: 0.82rem; margin-top: 0.5rem; }

.blog-pro-footer-strip {
  background: var(--bg-alt, #F5F8FF); padding: 1.75rem 0; text-align: center;
  border-top: 1px solid var(--border, #E0E4EB);
}
.blog-pro-rss, .blog-pro-pitch {
  color: var(--text-light, #6B7280); text-decoration: none; font-size: 0.9rem; font-weight: 500;
}
.blog-pro-rss:hover, .blog-pro-pitch:hover { color: var(--primary, #0020ED); }
.blog-pro-footer-sep { color: var(--text-light, #6B7280); margin: 0 0.75rem; opacity: 0.5; }

[data-theme="dark"] .blog-pro-card-thumb,
[data-theme="dark"] .blog-pro-featured-thumb {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

/* ========== HOLIDAY BANNER ========== */
.holiday-banner {
  position: relative;
  background: linear-gradient(90deg, var(--holiday-bg, #0020ED), color-mix(in srgb, var(--holiday-bg, #0020ED) 70%, #fff 30%), var(--holiday-bg, #0020ED));
  background-size: 200% 100%;
  animation: holidayShimmer 8s ease-in-out infinite;
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.12);
}
.holiday-banner-inner {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
}
.holiday-banner-msg { color: #fff; }
.holiday-banner-msg strong {
  background: rgba(255,255,255,0.22);
  padding: 2px 9px; border-radius: 4px;
  font-family: 'Courier New', monospace; letter-spacing: 0.04em;
}
.holiday-banner-cta {
  color: #fff !important;
  background: rgba(255,255,255,0.18);
  padding: 4px 12px; border-radius: 4px;
  text-decoration: none; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.15s;
}
.holiday-banner-cta:hover { background: rgba(255,255,255,0.32); }
.holiday-banner-gif {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  height: 32px; width: auto; pointer-events: none; z-index: 1;
  opacity: 0.85;
}
.holiday-banner-decor {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.holiday-spark {
  position: absolute; color: rgba(255,255,255,0.55); font-size: 0.75rem;
  animation: holidaySparkle 3s ease-in-out infinite;
}
.holiday-spark.s1 { left: 6%;  top: 30%; animation-delay: 0s; }
.holiday-spark.s2 { left: 18%; top: 70%; animation-delay: 0.4s; }
.holiday-spark.s3 { left: 35%; top: 20%; animation-delay: 0.9s; }
.holiday-spark.s4 { right: 32%; top: 65%; animation-delay: 1.3s; }
.holiday-spark.s5 { right: 18%; top: 25%; animation-delay: 1.7s; }
.holiday-spark.s6 { right: 6%;  top: 75%; animation-delay: 2.1s; }

@keyframes holidayShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes holidaySparkle {
  0%, 100% { opacity: 0; transform: scale(0.7); }
  50%      { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 640px) {
  .holiday-banner { font-size: 0.82rem; padding: 8px 12px; }
  .holiday-banner-inner { gap: 0.5rem; }
  .holiday-banner-gif { display: none; }
}

/* ========== EARLY BIRD ========== */
.cd-earlybird-callout {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(90deg, #FEF3C7, #FEF9E7);
  border: 1px solid #F59E0B;
  border-radius: 8px; padding: 12px 16px;
  margin: 0 0 1.25rem;
  font-size: 0.92rem; color: #78350F;
}
.cd-earlybird-icon { font-size: 1.6rem; line-height: 1; }
.cd-earlybird-sub { color: #92400E; font-size: 0.82rem; margin-left: 6px; }

.cd-batch-earlybird {
  display: inline-block; background: #FEF3C7; color: #78350F;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid #F59E0B; margin-left: 6px;
}

.cd-batch-price-old {
  text-decoration: line-through; color: #9CA3AF;
  font-size: 0.85em; margin-right: 6px; font-weight: 500;
}
.cd-batch-price-new { color: #16A34A; font-weight: 700; }
.cd-batch-price-savings {
  display: block; font-size: 0.75rem; color: #16A34A; font-weight: 600;
  margin-top: 2px; letter-spacing: 0.02em;
}

[data-theme="dark"] .cd-earlybird-callout {
  background: linear-gradient(90deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  color: #FEF3C7; border-color: rgba(245,158,11,0.6);
}
[data-theme="dark"] .cd-earlybird-sub { color: #FDE68A; }
[data-theme="dark"] .cd-batch-earlybird {
  background: rgba(245,158,11,0.18); color: #FDE68A;
  border-color: rgba(245,158,11,0.5);
}


/* ========== WORLD CUP GIVEAWAY — EDGE SIDEBAR ========== */
/* Right-edge sidebar: always-visible vertical tab. Click tab → 300px
   panel slides in from the right with jersey-split (Portugal red |
   Colombia yellow), waving flags, ribbon, slogan, and entry CTA.
   Hidden permanently once user submits (server sets wc_entered cookie). */

.wc-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(100%);
  z-index: 9999;
  font-family: inherit;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.wc-sidebar.wc-sidebar-show {
  opacity: 1;
  /* Translate so only the tab pokes out of the right edge */
  transform: translateY(-50%) translateX(300px);
  pointer-events: auto;
}
.wc-sidebar.wc-sidebar-show.wc-sidebar-open {
  /* Slide the whole panel into view */
  transform: translateY(-50%) translateX(0);
}

/* ----- Collapsed tab (left side of the sidebar, sticking out left) ----- */
.wc-tab {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  width: 44px;
  min-height: 150px;
  padding: 14px 0;
  background: linear-gradient(180deg, #FFE680 0%, #FFD700 50%, #C9A200 100%);
  color: #1A1A1A;
  border: 2px solid #B8860B;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
  animation: wcTabPulse 2.4s ease-in-out infinite;
}
.wc-tab:hover {
  padding-right: 6px;
  box-shadow: -6px 6px 22px rgba(255, 215, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.wc-sidebar-open .wc-tab { display: none; }

@keyframes wcTabPulse {
  0%, 100% { box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
  50%      { box-shadow: -4px 4px 22px rgba(255, 215, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.7); }
}

.wc-tab-icon {
  font-size: 22px;
  line-height: 1;
}
.wc-tab-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  text-transform: uppercase;
}
.wc-tab-flags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  line-height: 1;
}

/* ----- Expanded panel ----- */
.wc-panel {
  position: relative;
  width: 300px;
  padding: 0;
  color: #fff;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  border: 2px solid #FFD700;
  border-right: 0;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.3);
}

.wc-panel-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  width: 24px; height: 24px;
  border-radius: 50%;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.wc-panel-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: rotate(90deg);
}

/* ----- Jersey-split background ----- */
.wc-jersey {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}
.wc-jersey-half {
  flex: 1;
  position: relative;
}
.wc-jersey-por {
  /* Portugal home kit — red with green collar accent */
  background: linear-gradient(135deg, #B8141B 0%, #DA291C 60%, #8B0E15 100%);
}
.wc-jersey-por::after {
  /* Green stripe — echoes the Portugal flag green */
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 6px;
  background: #006A4E;
}
.wc-jersey-col {
  /* Colombia home kit — bright yellow with red trim */
  background: linear-gradient(135deg, #FFD700 0%, #FCD116 60%, #E8B800 100%);
}
.wc-jersey-col::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 6px;
  background: #003893;
}
.wc-jersey-seam {
  /* Diagonal seam between the two halves */
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.5), rgba(255,255,255,0.0));
  transform: translateX(-1px) skewX(-6deg);
}

/* ----- Top ribbon: golden bunting ----- */
.wc-ribbon {
  position: relative;
  z-index: 2;
  margin: 12px 12px 0;
  padding: 7px 10px;
  text-align: center;
  background: linear-gradient(180deg, #FFE680 0%, #FFD700 50%, #C9A200 100%);
  border: 1px solid #B8860B;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
  /* Notched ends — like a real ribbon banner */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 92% 100%, 96% 50%, 92% 0, 8% 0, 4% 50%, 8% 100%, 0 100%);
}
.wc-ribbon-text {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #4A2C00;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* ----- Close button ----- */
.wc-widget-close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.55);
  border: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  width: 22px; height: 22px;
  border-radius: 50%;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.wc-widget-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: rotate(90deg);
}

/* ----- Body content (above jersey, below ribbon) ----- */
.wc-body {
  position: relative;
  z-index: 2;
  padding: 14px 16px 18px;
}

/* ----- Waving flags ----- */
.wc-flags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 6px 0 14px;
}
.wc-flag {
  display: inline-block;
  width: 56px;
  height: 38px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  transform-origin: left center;
  will-change: transform;
}
.wc-flag svg { display: block; width: 100%; height: 100%; }

/* Waving animation — different timing per flag for a "flying" feel */
.wc-flag-por {
  animation: wcWavePor 2.2s ease-in-out infinite;
}
.wc-flag-col {
  animation: wcWaveCol 2.6s ease-in-out infinite;
  transform-origin: right center;
}
@keyframes wcWavePor {
  0%, 100% { transform: rotate(-2deg) skewX(-4deg) scaleY(0.98); }
  25%      { transform: rotate(2deg) skewX(4deg) scaleY(1.02); }
  50%      { transform: rotate(-1deg) skewX(-2deg) scaleY(1); }
  75%      { transform: rotate(3deg) skewX(6deg) scaleY(1.01); }
}
@keyframes wcWaveCol {
  0%, 100% { transform: rotate(2deg) skewX(4deg) scaleY(1); }
  30%      { transform: rotate(-3deg) skewX(-6deg) scaleY(1.02); }
  60%      { transform: rotate(1deg) skewX(2deg) scaleY(0.98); }
}

/* ----- VS block in the middle ----- */
.wc-vs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(0, 0, 0, 0.75);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
.wc-abbr {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1;
}
.wc-vs {
  font-size: 14px;
  font-weight: 900;
  color: #FFD700;
  letter-spacing: 1px;
  line-height: 1;
  margin: 1px 0;
}

/* ----- Teams + meta ----- */
.wc-teams {
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.9);
  margin-bottom: 4px;
}
.wc-meta {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.9);
  margin-bottom: 14px;
  line-height: 1.4;
}

/* ----- Slogan ----- */
.wc-slogan {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 1);
  letter-spacing: 0.3px;
  padding: 10px 4px 2px;
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
}
.wc-slogan-em {
  display: inline-block;
  margin-top: 2px;
  background: linear-gradient(180deg, #FFE680, #FFD700, #C9A200);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

/* ----- Entry CTA ----- */
.wc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 16px;
  background: linear-gradient(180deg, #FFE680 0%, #FFD700 50%, #C9A200 100%);
  color: #1A1A1A !important;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #B8860B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wc-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.wc-cta-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.wc-cta:hover .wc-cta-arrow {
  transform: translateX(3px);
}
.wc-cta-note {
  margin-top: 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.3px;
}

@media (max-width: 520px) {
  /* On phones, dock the panel to the bottom edge instead of right */
  .wc-sidebar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: translateY(100%);
  }
  .wc-sidebar.wc-sidebar-show {
    /* Tab pokes up from the bottom edge */
    transform: translateY(calc(100% - 40px));
  }
  .wc-sidebar.wc-sidebar-show.wc-sidebar-open {
    transform: translateY(0);
  }
  .wc-tab {
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 200px;
    min-height: 40px;
    flex-direction: row;
    padding: 8px 14px;
    border: 2px solid #B8860B;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  }
  .wc-tab-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 12px;
  }
  .wc-tab-flags { flex-direction: row; }
  .wc-panel {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    border: 2px solid #FFD700;
    border-bottom: 0;
  }
}

/* AI for Schools — dual-track enroll card + comparison cards */
.enroll-tier-banner {
  background: linear-gradient(135deg, #FFD700, #FFB84D);
  color: #0A0A14;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  text-align: center;
  margin-bottom: 1rem;
}
.enroll-tier { padding: 1rem 0; border-top: 1px solid var(--border); }
.enroll-tier:first-of-type { border-top: 0; }
.enroll-tier-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 0.35rem; font-weight: 700; }
.enroll-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.65rem; }
.enroll-price-strike { text-decoration: line-through; color: var(--text-light); font-size: 1rem; }

.schools-track-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (max-width: 768px) { .schools-track-compare { grid-template-columns: 1fr; } }
.schools-track-card { background: var(--bg-alt, #f5f8ff); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; }
.schools-track-badge { display: inline-block; background: var(--primary-light); color: var(--primary-dark); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35rem 0.75rem; border-radius: 999px; margin-bottom: 0.75rem; }
.schools-track-card h3 { margin-bottom: 1rem; }
.schools-track-points { list-style: none; padding: 0; margin: 0 0 1.25rem 0; }
.schools-track-points li { padding: 0.4rem 0; color: var(--text); font-size: 0.95rem; }
.schools-track-price-block { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.schools-track-price { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.schools-track-price-strike { text-decoration: line-through; color: var(--text-light); font-size: 1.1rem; }
.schools-track-price-tag { background: #FFD700; color: #0A0A14; font-size: 0.75rem; font-weight: 800; padding: 0.25rem 0.6rem; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }

.schools-track-curriculum { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.schools-track-curriculum:first-of-type { border-top: 0; padding-top: 0; margin-top: 1rem; }
.schools-track-curriculum-header h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.schools-track-curriculum-sub { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0.25rem; }
.schools-track-curriculum-goal { color: var(--text); font-size: 0.95rem; margin-bottom: 1.5rem; }
.schools-track-curriculum-goal em { color: var(--primary); font-style: italic; }

/* Multi-track curriculum rendered inside course-detail.ejs */
.cd-track-group { margin-top: 2rem; }
.cd-track-group:first-of-type { margin-top: 0.5rem; }
.cd-track-group-header { background: var(--bg-alt, #f5f8ff); border-left: 4px solid var(--primary); padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1rem; }
.cd-track-group-title { font-size: 1.2rem; margin: 0 0 0.35rem 0; color: var(--primary-dark); }
.cd-track-group-sub { font-size: 0.9rem; color: var(--text-light); margin: 0 0 0.25rem 0; }
.cd-track-group-goal { font-size: 0.9rem; color: var(--text); margin: 0; }
.cd-track-group-goal em { color: var(--primary); font-style: italic; }

/* Multi-track enroll section */
.cd-enroll-summer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFB84D);
  color: #0A0A14; font-weight: 800;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.cd-track-enroll-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
@media (max-width: 768px) { .cd-track-enroll-grid { grid-template-columns: 1fr; } }
.cd-track-enroll-card {
  background: #fff; border: 1px solid #E5E9F2; border-radius: 16px;
  padding: 1.75rem; box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.cd-track-enroll-name { font-size: 1.15rem; font-weight: 800; color: var(--primary-dark); }
.cd-track-enroll-grade { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.5rem; }
.cd-track-enroll-price-row { display: flex; align-items: baseline; gap: 0.6rem; }
.cd-track-enroll-price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.cd-track-enroll-strike { font-size: 1.1rem; color: var(--text-light); text-decoration: line-through; }
.cd-track-enroll-meta { font-size: 0.85rem; color: var(--text-light); margin: 0.5rem 0 1rem 0; }
.cd-track-form { margin: 0; }

/* Batch fallback (catalog-driven, when no DB batches) */
.cd-batch-dates { font-size: 0.95rem; color: var(--text); display: flex; flex-direction: column; gap: 0.35rem; margin: 0.75rem 0; }
.cd-batch-tracks { background: var(--bg-alt, #f5f8ff); border-radius: 8px; padding: 0.75rem 1rem; margin-top: 0.5rem; }
.cd-batch-track-row { display: flex; justify-content: space-between; padding: 0.35rem 0; font-size: 0.95rem; }
.cd-batch-track-row + .cd-batch-track-row { border-top: 1px solid var(--border); }
.cd-batch-track-name { font-weight: 700; color: var(--text); }
.cd-batch-track-price { font-weight: 800; color: var(--primary); }
.cd-batch-track-strike { color: var(--text-light); font-weight: 500; font-size: 0.85rem; text-decoration: line-through; margin-left: 0.35rem; }
.cd-batch-grid-2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .cd-batch-grid-2x2 { grid-template-columns: 1fr; } }
.cd-batch-zoom-note { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; background: rgba(0,32,237,0.08); color: var(--primary-dark); border: 1px dashed rgba(0,32,237,0.35); border-radius: 8px; padding: 0.45rem 0.7rem; font-size: 0.85rem; font-weight: 600; }
.cd-batch-zoom-icon { font-size: 1rem; }

/* Batch picker in the enroll section (Step 1 selects cohort, Step 2 selects track) */
.cd-batch-picker { margin: 1rem 0 1.25rem; }
.cd-batch-picker-label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.6rem; }
.cd-batch-picker-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
@media (max-width: 768px) { .cd-batch-picker-grid { grid-template-columns: 1fr; } }
.cd-batch-pill {
  display: block; cursor: pointer; position: relative;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 0.85rem 1rem;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.cd-batch-pill:hover { border-color: var(--primary-light); transform: translateY(-1px); }
.cd-batch-pill input { position: absolute; opacity: 0; pointer-events: none; }
.cd-batch-pill:has(input:checked),
.cd-batch-pill.is-checked {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,32,237,0.12);
  background: var(--primary-light);
}
.cd-batch-pill-inner { display: flex; flex-direction: column; gap: 0.2rem; }
.cd-batch-pill-name { font-weight: 800; color: var(--primary-dark); font-size: 0.95rem; }
.cd-batch-pill-when { font-size: 0.83rem; color: var(--text-light); font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* =========================================================================
   AI for Schools — playful illustrated hero
   ========================================================================= */
.afs-hero {
  position: relative; overflow: hidden; color: #fff;
  padding: 4.5rem 0 4rem;
  background: linear-gradient(135deg, #0A0A14 0%, #001066 50%, #0020ED 100%);
}
.afs-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.afs-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.afs-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; pointer-events: none; }
.afs-hero-glow-1 { width: 420px; height: 420px; background: #0020ED; top: -100px; left: -100px; }
.afs-hero-glow-2 { width: 460px; height: 460px; background: #0084FE; bottom: -140px; right: -90px; opacity: 0.45; }

.afs-hero-container { position: relative; z-index: 2; }
.afs-hero-row { display: grid; grid-template-columns: minmax(180px, 260px) 1fr minmax(180px, 260px); align-items: center; gap: 1rem; }
@media (max-width: 1024px) {
  .afs-hero-row { grid-template-columns: 1fr; }
  .afs-hero-char { order: 2; max-width: 200px; margin: 0 auto; }
  .afs-hero-char-left { display: none; }
}
@media (max-width: 640px) {
  .afs-hero { padding: 3rem 0 2.5rem; }
  .afs-hero-char-right { display: none; }
}
/* Floating tool-mockup panels (replaced the cartoon characters) */
.afs-hero-mock { animation: afs-float 7s ease-in-out infinite; position: relative; }
.afs-hero-mock-right { animation-delay: -3.5s; }
@keyframes afs-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.afs-hero-mock-label {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  color: #FFD700;
  border: 1px solid rgba(255,215,0,0.4);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  margin-bottom: 0.75rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.afs-hero-mock-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,132,254,0.08) inset;
  overflow: hidden;
}
.afs-hero-mock-left .afs-hero-mock-card  { transform: rotate(-2.5deg); }
.afs-hero-mock-right .afs-hero-mock-card { transform: rotate(2.5deg); }

/* Mock window titlebar */
.afs-mock-titlebar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.afs-mock-dot { width: 9px; height: 9px; border-radius: 50%; display: block; }
.afs-mock-dot-r { background: #FF6B6B; }
.afs-mock-dot-y { background: #FFB84D; }
.afs-mock-dot-g { background: #22D680; }
.afs-mock-title {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem; color: rgba(255,255,255,0.65);
  margin-left: 0.5rem; letter-spacing: 0.04em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.afs-mock-body { padding: 0.9rem; }

/* Left: block-code mock (Scratch-style) */
.afs-mock-blocks { width: 260px; }
.afs-mock-block {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.75rem; border-radius: 8px;
  font-size: 0.78rem; font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  position: relative;
}
.afs-mock-block em { font-style: normal; background: rgba(255,255,255,0.15); padding: 0.05rem 0.35rem; border-radius: 4px; }
.afs-mock-block-icon { font-size: 0.95rem; line-height: 1; }
.afs-mock-block-event   { background: linear-gradient(135deg, #FFD700, #FFB84D); color: #0A0A14; }
.afs-mock-block-event em{ background: rgba(0,0,0,0.18); color: #0A0A14; }
.afs-mock-block-action  { background: linear-gradient(135deg, #0084FE, #0040C4); margin-left: 0.6rem; }
.afs-mock-block-control { background: linear-gradient(135deg, #B47EFF, #8045E5); margin-left: 0.6rem; }
.afs-mock-block-output  { background: linear-gradient(135deg, #22D680, #0E9E5C); margin-left: 0.6rem; }
.afs-mock-confidence {
  margin-top: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem; color: #fff;
}
.afs-mock-confidence-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.12); border-radius: 999px; overflow: hidden; }
.afs-mock-confidence-bar > span { display: block; height: 100%; background: linear-gradient(90deg, #FFD700, #FFB84D); border-radius: 999px; }
.afs-mock-confidence-text { color: #FFD700; font-weight: 700; }

/* Right: Python notebook mock */
.afs-mock-notebook { width: 280px; font-family: 'JetBrains Mono', ui-monospace, monospace; }
.afs-mock-cell {
  display: flex; gap: 0.5rem; align-items: baseline;
  padding: 0.3rem 0.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.92);
  border-radius: 6px;
  background: rgba(0,0,0,0.18);
  margin-bottom: 0.35rem;
}
.afs-mock-cell-prompt { color: #6FDFFF; font-size: 0.65rem; min-width: 38px; flex-shrink: 0; }
.afs-mock-cell code { color: rgba(255,255,255,0.95); font-family: inherit; font-size: 0.72rem; word-break: break-all; }
.afs-mock-kw  { color: #FF8AA8; }
.afs-mock-fn  { color: #FFD700; }
.afs-mock-num { color: #B47EFF; }
.afs-mock-output {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.55rem; border-radius: 6px;
  background: rgba(34,214,128,0.12); border: 1px solid rgba(34,214,128,0.3);
  margin-top: 0.4rem; font-size: 0.74rem;
}
.afs-mock-output-prompt { color: #22D680; font-weight: 700; font-size: 0.65rem; }
.afs-mock-output-val { color: #fff; font-weight: 800; }
.afs-mock-output-badge { color: #22D680; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.05em; margin-left: auto; }
.afs-mock-chart {
  margin-top: 0.5rem; padding: 0.5rem; border-radius: 6px;
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,215,0,0.18);
}
.afs-mock-chart svg { width: 100%; height: 50px; display: block; }
.afs-mock-chart-label {
  display: block; margin-top: 0.25rem;
  font-size: 0.62rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* Trust strip (Zoom + recordings + cert) */
.afs-hero-trust-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.6rem; font-size: 0.85rem; opacity: 0.88;
  margin-bottom: 1.2rem;
}
.afs-hero-trust-item { display: inline-flex; align-items: center; gap: 0.3rem; }
.afs-hero-trust-icon { font-size: 0.95rem; }
.afs-hero-trust-sep { opacity: 0.4; }

.afs-hero-center { text-align: center; max-width: 720px; margin: 0 auto; padding: 0 1rem; }
.afs-hero-eyebrow { display: flex; justify-content: center; align-items: center; gap: 0.65rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.afs-hero-pill {
  display: inline-block; padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.afs-hero-pill-summer { background: linear-gradient(135deg, #FFD700, #FFB84D); color: #0A0A14; border-color: transparent; }

.afs-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 1rem; color: #fff;
}
.afs-hero-title em { color: #FFD700; font-style: normal; }
.afs-hero-sub { font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.55; opacity: 0.92; margin: 0 auto 2rem; max-width: 600px; }

.afs-hero-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin: 0 auto 2rem; max-width: 520px; }
.afs-hero-fact { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 12px;
  padding: 0.85rem 0.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.afs-hero-fact-n { font-size: 1.4rem; font-weight: 800; color: #FFD700; line-height: 1; }
.afs-hero-fact-l { font-size: 0.78rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.06em; }

.afs-hero-cta-row { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.afs-hero-cta-primary { background: #FFD700 !important; color: #0A0A14 !important; border-color: #FFD700 !important; box-shadow: 0 12px 32px rgba(255,215,0,0.32); }
.afs-hero-cta-primary:hover { background: #FFC700 !important; border-color: #FFC700 !important; transform: translateY(-2px); }
.afs-hero-cta-secondary { border-color: rgba(255,255,255,0.5) !important; color: #fff !important; }
.afs-hero-cta-secondary:hover { background: rgba(255,255,255,0.1) !important; }

.afs-hero-price-strip {
  display: inline-flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
  background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.95rem;
}
.afs-hero-price-from { opacity: 0.75; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.1em; font-weight: 700; }
.afs-hero-price-n { font-weight: 900; font-size: 1.35rem; color: #FFD700; }
.afs-hero-price-was { opacity: 0.6; text-decoration: line-through; font-size: 0.9rem; }
.afs-hero-price-tag { background: #FFD700; color: #0A0A14; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.22rem 0.55rem; border-radius: 999px; }

/* ===== Weekend Workshops (ww-*) ===== */

/* Hero */
.ww-hero {
  position: relative;
  background: linear-gradient(135deg, #050b1f 0%, #0a1845 55%, #0020ED 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.ww-hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.ww-hero-glow {
  position: absolute; width: 540px; height: 540px; border-radius: 50%; filter: blur(120px); opacity: 0.55;
}
.ww-hero-glow-1 { top: -160px; left: -120px; background: radial-gradient(circle, rgba(0,132,254,0.85), transparent 70%); }
.ww-hero-glow-2 { bottom: -200px; right: -120px; background: radial-gradient(circle, rgba(255,215,0,0.45), transparent 70%); }
.ww-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
}
.ww-hero-container { position: relative; text-align: center; max-width: 920px; }

.ww-hero-eyebrow { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ww-hero-pill {
  display: inline-block; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}
.ww-hero-pill-gold { background: rgba(255,215,0,0.18); border-color: rgba(255,215,0,0.4); color: #FFE680; }

.ww-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.ww-hero-title em { color: #FFD700; font-style: normal; }

.ww-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.6;
  color: rgba(255,255,255,0.88); max-width: 760px; margin: 0 auto 2rem;
}
.ww-hero-sub strong { color: #fff; }

.ww-hero-facts {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem; max-width: 720px; margin: 0 auto 2.25rem;
}
.ww-hero-fact {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  padding: 1rem 0.6rem; border-radius: 14px;
}
.ww-hero-fact-n { font-size: 1.7rem; font-weight: 900; color: #FFD700; line-height: 1; }
.ww-hero-fact-l { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.78; font-weight: 600; }

.ww-hero-cta-row { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
.ww-hero-cta-row .btn-primary { background: #FFD700; color: #0A0A14; border-color: #FFD700; }
.ww-hero-cta-row .btn-primary:hover { background: #FFC700; border-color: #FFC700; }
.ww-hero-cta-row .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.ww-hero-cta-row .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

.ww-hero-trust-strip {
  display: inline-flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center;
  background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.88rem; color: rgba(255,255,255,0.9);
}
.ww-hero-trust-sep { opacity: 0.4; }

/* AEO summary card — definitional "what is this" block */
.ww-aeo-section { background: var(--bg); padding: 3.5rem 0 0; }
.ww-aeo-card {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg) 70%);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 2.25rem 2.25rem 2rem; max-width: 980px; margin: 0 auto;
  box-shadow: var(--shadow);
}
.ww-aeo-title {
  font-size: 1.55rem; font-weight: 900; color: var(--secondary);
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.ww-aeo-lede {
  font-size: 1.02rem; color: var(--text); line-height: 1.65; margin-bottom: 1.5rem;
}
.ww-aeo-lede strong { color: var(--secondary); }
.ww-aeo-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.85rem 1.5rem;
}
.ww-aeo-facts > div {
  padding: 0.75rem 0; border-top: 1px solid var(--border);
}
.ww-aeo-facts dt {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--primary); margin-bottom: 0.25rem;
}
.ww-aeo-facts dd {
  font-size: 0.93rem; color: var(--text); line-height: 1.55;
}
.ww-aeo-facts dd strong { color: var(--secondary); }
@media (max-width: 768px) {
  .ww-aeo-card { padding: 1.75rem 1.5rem; }
  .ww-aeo-facts { grid-template-columns: 1fr; }
}

/* What's included */
.ww-included-section { background: var(--bg); }
.ww-included-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.ww-included-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ww-included-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.ww-included-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 0.9rem;
}
.ww-included-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.5rem; }
.ww-included-card p { font-size: 0.94rem; color: var(--text-light); line-height: 1.55; }

/* City grid */
.ww-cities-section { background: var(--bg-alt); }
.ww-cities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.ww-city-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  scroll-margin-top: 6rem;
  overflow: hidden; /* clip the city-art band against rounded corners */
}
.ww-city-card-art {
  margin: -1.5rem -1.5rem 0.4rem;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}
.ww-city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.ww-city-card-premium {
  border-color: #FFD700; background:
    linear-gradient(180deg, rgba(255,215,0,0.06), rgba(255,215,0,0) 60%),
    #fff;
  position: relative;
}
.ww-city-card-premium::before {
  content: 'Premium market'; position: absolute; top: -10px; right: 16px;
  background: #FFD700; color: #0A0A14; font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 0.22rem 0.6rem; border-radius: 999px;
}

.ww-city-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.ww-city-name { font-size: 1.15rem; font-weight: 800; color: var(--secondary); line-height: 1.2; }
.ww-city-price { font-size: 1.35rem; font-weight: 900; color: var(--primary); white-space: nowrap; }

.ww-city-tagline { font-size: 0.92rem; color: var(--text-light); line-height: 1.5; }

.ww-city-hotel {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--bg-alt); border-radius: 10px; padding: 0.75rem 0.85rem;
}
.ww-city-hotel-icon { font-size: 1.2rem; line-height: 1.2; }
.ww-city-hotel-name { font-size: 0.92rem; font-weight: 700; color: var(--secondary); line-height: 1.3; }
.ww-city-hotel-neighborhood { font-size: 0.82rem; color: var(--text-light); margin-top: 0.15rem; }

.ww-city-batch {
  border: 1px dashed var(--border); border-radius: 10px; padding: 0.7rem 0.85rem;
}
.ww-city-batch-dates {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  font-size: 0.95rem; font-weight: 700; color: var(--secondary);
}
.ww-city-batch-sep { color: var(--primary); font-weight: 800; }
.ww-city-batch-time { font-size: 0.78rem; color: var(--text-light); margin-top: 0.2rem; letter-spacing: 0.02em; }

.btn-block { width: 100%; text-align: center; }
.ww-city-cta { margin-top: auto; }

/* Pricing strip */
.ww-pricing-section { background: var(--bg); }
.ww-pricing-strip {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 1.25rem;
  background: linear-gradient(135deg, #0a1845 0%, #0020ED 100%);
  color: #fff; border-radius: 18px; padding: 2rem 2.25rem;
  box-shadow: 0 18px 48px rgba(0,32,237,0.18);
}
.ww-pricing-strip-side { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; }
.ww-pricing-strip-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; opacity: 0.8;
}
.ww-pricing-strip-price { font-size: 2.2rem; font-weight: 900; color: #FFD700; line-height: 1; }
.ww-pricing-strip-foot { font-size: 0.82rem; opacity: 0.85; }
.ww-pricing-strip-divider {
  width: 1px; align-self: stretch; background: rgba(255,255,255,0.18);
}
.ww-pricing-strip-extras { font-size: 0.88rem; line-height: 1.7; text-align: left; }
.ww-pricing-strip-extras strong { color: #FFD700; }

/* FAQ */
.ww-faq-section { background: var(--bg-alt); }
.ww-faq-grid { display: grid; gap: 0.8rem; max-width: 880px; margin: 2.5rem auto 0; }
.ww-faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.25rem;
}
.ww-faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--secondary);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.ww-faq-item summary::-webkit-details-marker { display: none; }
.ww-faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--primary);
  transition: transform var(--transition);
}
.ww-faq-item[open] summary::after { content: '−'; }
.ww-faq-item p { margin-top: 0.7rem; font-size: 0.93rem; color: var(--text-light); line-height: 1.6; }
.ww-faq-item a { color: var(--primary); font-weight: 600; }

/* CTA */
.ww-cta-section {
  background: linear-gradient(135deg, #050b1f 0%, #0a1845 100%); color: #fff;
}
.ww-cta-section .section-title { color: #fff; }
.ww-cta-section .section-subtitle { color: rgba(255,255,255,0.82); }
.ww-cta-section .section-subtitle strong { color: #FFD700; }
.ww-cta-section .btn-primary { background: #FFD700; color: #0A0A14; border-color: #FFD700; }
.ww-cta-section .btn-primary:hover { background: #FFC700; border-color: #FFC700; }

/* Locations cross-link card */
.loc-weekend-link {
  background: linear-gradient(135deg, #0a1845 0%, #0020ED 100%); color: #fff;
  border-radius: 18px; padding: 2rem 2.25rem; margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 18px 48px rgba(0,32,237,0.18);
}
.loc-weekend-link-text h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.35rem; }
.loc-weekend-link-text p { font-size: 0.95rem; opacity: 0.88; line-height: 1.55; max-width: 560px; }
.loc-weekend-link .btn { background: #FFD700; color: #0A0A14; border-color: #FFD700; white-space: nowrap; }
.loc-weekend-link .btn:hover { background: #FFC700; border-color: #FFC700; }

/* Responsive */
@media (max-width: 768px) {
  .ww-hero { padding: 3.5rem 0 3rem; }
  .ww-hero-facts { grid-template-columns: repeat(2, 1fr); }
  .ww-pricing-strip { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem 1.5rem; }
  .ww-pricing-strip-divider { width: 100%; height: 1px; }
  .ww-pricing-strip-extras { text-align: center; }
  .loc-weekend-link { padding: 1.5rem 1.25rem; }
}

/* ===== Homepage weekend-cities carousel ===== */
.ww-carousel-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(0,132,254,0.06), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255,215,0,0.05), transparent 55%),
    var(--bg);
}
.ww-carousel-head { text-align: center; margin-bottom: 2.25rem; }
.ww-carousel-eyebrow {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.32rem 0.8rem; border-radius: 999px; margin-bottom: 1rem;
}

.ww-carousel {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: 0 3.5rem; /* leave room for the prev/next arrows */
}
.ww-carousel-viewport {
  overflow: hidden; border-radius: var(--radius); padding: 6px; margin: -6px;
}
.ww-carousel-track {
  display: flex; gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.ww-carousel-card {
  flex: 0 0 calc((100% - 1.25rem * 2) / 3); /* 3 cards desktop */
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  color: var(--text); text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden; /* clip art against rounded corners */
}
.ww-carousel-card-art {
  margin: -1.4rem -1.4rem 0.35rem;
  height: 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}
.ww-carousel-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light);
  color: var(--text); /* keep base text color on hover so card body doesn't go blue */
}
.ww-carousel-card-premium {
  border-color: #FFD700;
  background: linear-gradient(180deg, rgba(255,215,0,0.05), rgba(255,215,0,0) 60%), #fff;
}
.ww-carousel-card-premium::before {
  content: 'Premium market'; position: absolute; top: -10px; right: 14px;
  background: #FFD700; color: #0A0A14; font-size: 0.6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.55rem; border-radius: 999px;
}

.ww-carousel-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.ww-carousel-card-city { font-size: 1.05rem; font-weight: 800; color: var(--secondary); line-height: 1.25; }
.ww-carousel-card-price { font-size: 1.15rem; font-weight: 900; color: var(--primary); white-space: nowrap; }

.ww-carousel-card-hotel {
  display: flex; align-items: flex-start; gap: 0.55rem;
  background: var(--bg-alt); border-radius: 10px; padding: 0.65rem 0.75rem;
}
.ww-carousel-card-hotel-icon { font-size: 1.05rem; line-height: 1.2; }
.ww-carousel-card-hotel-name { font-size: 0.85rem; font-weight: 700; color: var(--secondary); line-height: 1.3; }
.ww-carousel-card-hotel-neighborhood { font-size: 0.74rem; color: var(--text-light); margin-top: 0.12rem; }

.ww-carousel-card-dates {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.45;
  border-top: 1px dashed var(--border); padding-top: 0.7rem;
}
.ww-carousel-card-dates strong { color: var(--secondary); font-weight: 700; }

.ww-carousel-card-cta {
  margin-top: auto; font-size: 0.9rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.ww-carousel-card:hover .ww-carousel-card-cta { color: var(--primary-dark); }

/* Arrows */
.ww-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); color: var(--secondary);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 2;
}
.ww-carousel-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.05); }
.ww-carousel-arrow-prev { left: 0; }
.ww-carousel-arrow-next { right: 0; }

/* Dots */
.ww-carousel-dots {
  display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center;
  margin-top: 1.75rem;
}
.ww-carousel-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: var(--border); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.ww-carousel-dot:hover { background: var(--primary-light); }
.ww-carousel-dot.is-active { background: var(--primary); width: 22px; border-radius: 999px; }

/* Footer row */
.ww-carousel-foot {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.85rem; margin-top: 1.75rem;
}
.ww-carousel-foot-sep { color: var(--text-light); opacity: 0.55; }
.ww-carousel-foot-link { font-weight: 600; color: var(--primary); }
.ww-carousel-foot-link:hover { color: var(--primary-dark); }

/* Responsive — drop to 2 cards on tablet, 1 on mobile */
@media (max-width: 980px) {
  .ww-carousel-card { flex-basis: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 640px) {
  .ww-carousel { padding: 0 2.75rem; }
  .ww-carousel-card { flex-basis: 100%; }
  .ww-carousel-arrow { width: 38px; height: 38px; font-size: 1.4rem; }
}

