/* ===================================================================
   SKILLS TUTORIALS — PREMIUM SALES FUNNEL STYLESHEET
   Brand: Skills Tutorials | Founder: Sushil Verma
   Core Philosophy: LEARN. APPLY. GROW.
   Design Direction: High-End SaaS + Modern EdTech + Conversion Funnel
   =================================================================== */

:root {
  /* Color Palette - Navy / Dark Foundation */
  --bg-primary: #060e1a;
  --bg-secondary: #0a1628;
  --bg-card: rgba(14, 28, 48, 0.75);
  --bg-card-hover: rgba(20, 40, 70, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-glass-elevated: rgba(255, 255, 255, 0.065);
  --bg-light: #f8fafc;
  --bg-light-surface: #ffffff;

  /* Accent Colors */
  --blue-primary: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --sky-accent: #38bdf8;
  --sky-glow: rgba(56, 189, 248, 0.28);
  --purple-accent: #818cf8;
  --purple-glow: rgba(129, 140, 248, 0.25);
  --gold-accent: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --emerald-accent: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --rose-accent: #f43f5e;
  --rose-subtle: rgba(244, 63, 94, 0.12);
  --whatsapp-color: #25d366;
  --whatsapp-hover: #1eb857;

  /* Text Colors */
  --text-white: #ffffff;
  --text-heading: #f1f5f9;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #64748b;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(56, 189, 248, 0.15);
  --border-card-hover: rgba(56, 189, 248, 0.45);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-light: #e2e8f0;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing & Layout */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-neon-blue: 0 0 35px rgba(37, 99, 235, 0.3);
  --shadow-neon-gold: 0 0 35px rgba(245, 158, 11, 0.35);
}

/* ================= RESET & BASE ================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px; /* clearance for mobile sticky CTA */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.25s ease;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section Common */
.section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--sky-accent);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-tag.gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--gold-accent);
}

.section-tag.green {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-accent);
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--sky-accent) 55%, var(--purple-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-gold {
  background: linear-gradient(135deg, #fde047 0%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background patterns */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-radial {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-blue {
  background: radial-gradient(circle, var(--blue-primary) 0%, transparent 70%);
}

.bg-glow-purple {
  background: radial-gradient(circle, var(--purple-accent) 0%, transparent 70%);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  text-align: center;
  white-space: nowrap;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--blue-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e1b0b;
  box-shadow: 0 8px 24px var(--gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.55);
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-heading);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sky-accent);
  color: var(--sky-accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  font-weight: 700;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* ================= HEADER & NAV ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(6, 14, 26, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.site-header.scrolled {
  background: rgba(6, 14, 26, 0.98);
  border-bottom: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

/* Top FOMO Bar */
.top-fomo-bar {
  background: linear-gradient(90deg, #0b1f44 0%, #172d5c 50%, #0b1f44 100%);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding: 6px 0;
  font-size: 0.78rem;
  color: #e2e8f0;
}

.fomo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1360px;
}

.fomo-bar-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fomo-badge {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fomo-text {
  font-size: 0.8rem;
  color: #cbd5e1;
}

.fomo-text strong {
  color: #ffffff;
}

.fomo-bar-cta {
  background: transparent;
  border: none;
  color: var(--sky-accent);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: none;
}

@media (min-width: 768px) {
  .fomo-bar-cta {
    display: inline-block;
  }
}

.fomo-bar-cta:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Main Nav Bar */
.main-nav-bar {
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1360px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: 40px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .site-logo {
    height: 32px;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap !important;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta-gold {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.45);
  font-size: 0.85rem;
  padding: 9px 18px;
}

@media (max-width: 480px) {
  .header-cta-gold {
    font-size: 0.76rem;
    padding: 7px 12px;
  }
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  display: inline-block;
  animation: live-pulse 1.8s infinite;
  margin-right: 4px;
}

@keyframes live-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ================= HERO SECTION ================= */
.hero-section {
  padding-top: 130px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 155px;
    padding-bottom: 90px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
  }
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: var(--sky-accent);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-body);
  line-height: 1.68;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 18px 6px 8px;
  margin-bottom: 30px;
}

.founder-avatar-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--purple-accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-avatar-mini-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 1.5px solid var(--sky-accent);
  background: #0f172a;
}

.founder-tag-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.founder-tag-text strong {
  color: var(--text-white);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .hero-cta-row .btn {
    width: 100%;
  }
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg {
  color: var(--emerald-accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hero Visual / Dashboard Ecosystem */
.hero-visual-card {
  position: relative;
  background: linear-gradient(160deg, rgba(14, 28, 48, 0.85) 0%, rgba(8, 16, 28, 0.95) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky-accent), var(--purple-accent), transparent);
}

.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-visual-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--emerald-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Ecosystem Diagram Composition */
.ecosystem-network {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.eco-center {
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e1b4b 100%);
  border: 2px solid var(--sky-accent);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.45);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  max-width: 200px;
}

.eco-center-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}

.eco-center-sub {
  font-size: 0.72rem;
  color: var(--sky-accent);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* Floating Satellite Nodes */
.eco-node {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-card);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 2;
}

.eco-node:hover {
  transform: scale(1.06);
  border-color: var(--sky-accent);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

.eco-node .node-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.eco-node.ai { top: 6%; left: 10%; border-color: rgba(56, 189, 248, 0.4); }
.eco-node.dm { top: 4%; right: 10%; border-color: rgba(129, 140, 248, 0.4); }
.eco-node.auto { bottom: 8%; left: 8%; border-color: rgba(245, 158, 11, 0.4); }
.eco-node.crm { bottom: 6%; right: 12%; border-color: rgba(16, 185, 129, 0.4); }
.eco-node.ads { top: 42%; left: 0%; border-color: rgba(244, 63, 94, 0.4); }
.eco-node.funnels { top: 40%; right: 0%; border-color: rgba(56, 189, 248, 0.4); }
.eco-node.agents { top: 18%; left: 38%; transform: translateX(-50%); border-color: rgba(129, 140, 248, 0.4); }
.eco-node.wa { bottom: 20%; left: 38%; transform: translateX(-50%); border-color: rgba(37, 211, 102, 0.4); }

/* Connecting SVG Lines */
.eco-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.eco-connectors line {
  stroke: rgba(56, 189, 248, 0.22);
  stroke-dasharray: 4, 4;
  animation: dash 25s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -100;
  }
}

.hero-visual-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual-footer strong {
  color: var(--sky-accent);
}

/* ================= TRUST STRIP ================= */
.trust-strip {
  background: rgba(10, 22, 40, 0.8);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-accent);
  flex-shrink: 0;
}

.trust-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
}

/* ================= PROBLEM SECTION ================= */
.problem-section {
  background: var(--bg-primary);
}

.problem-compare-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 36px;
}

@media (min-width: 900px) {
  .problem-compare-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

.compare-box {
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}

.compare-box.bad {
  background: linear-gradient(165deg, rgba(35, 15, 25, 0.6) 0%, rgba(18, 10, 16, 0.9) 100%);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.compare-box.good {
  background: linear-gradient(165deg, rgba(14, 34, 56, 0.7) 0%, rgba(8, 20, 36, 0.95) 100%);
  border: 1.5px solid var(--sky-accent);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.15);
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.compare-box.bad .compare-tag {
  background: var(--rose-subtle);
  border: 1px solid rgba(244, 63, 94, 0.35);
  color: var(--rose-accent);
}

.compare-box.good .compare-tag {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: var(--sky-accent);
}

.compare-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.compare-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

/* Steps Pipeline */
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pipeline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.compare-box.bad .pipeline-item {
  background: rgba(244, 63, 94, 0.06);
  border: 1px solid rgba(244, 63, 94, 0.15);
  color: #fda4af;
}

.compare-box.good .pipeline-item {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.18);
  color: #bae6fd;
}

.pipeline-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.compare-box.bad .pipeline-num {
  background: rgba(244, 63, 94, 0.2);
  color: var(--rose-accent);
}

.compare-box.good .pipeline-num {
  background: rgba(56, 189, 248, 0.25);
  color: var(--sky-accent);
}

.pipeline-result {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-box.bad .pipeline-result {
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #fecdd3;
}

.compare-box.good .pipeline-result {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #a7f3d0;
}

.highlight-banner {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(129, 140, 248, 0.08) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  text-align: center;
}

.highlight-banner p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
}

.highlight-banner span {
  color: var(--sky-accent);
}

/* ================= AUDIENCE SECTION ================= */
.audience-section {
  background: var(--bg-secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--sky-accent);
  box-shadow: var(--shadow-md);
}

.audience-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-accent);
  margin-bottom: 18px;
}

.audience-role {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.audience-problem {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.audience-outcome {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sky-accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================= BIG VALUE PROPOSITION / ECOSYSTEM ================= */
.ecosystem-section {
  background: var(--bg-primary);
  position: relative;
}

.ecosystem-wheel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(170deg, rgba(14, 28, 48, 0.9) 0%, rgba(6, 14, 26, 0.98) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 44px 30px;
  box-shadow: var(--shadow-lg);
}

.wheel-center-content {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 36px auto;
}

.wheel-center-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid var(--sky-accent);
  color: var(--sky-accent);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.wheel-center-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 8px;
}

.wheel-center-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.wheel-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .wheel-skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .wheel-skills-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .wheel-skills-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.wheel-skill-badge {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-body);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wheel-skill-badge:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--sky-accent);
  color: var(--text-white);
  transform: translateY(-2px);
}

.wheel-footer-copy {
  text-align: center;
  margin-top: 32px;
  font-size: 1.05rem;
  color: var(--text-body);
  font-style: italic;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= DIGITAL MARKETING MODULE ================= */
.curriculum-section {
  background: var(--bg-secondary);
}

.dm-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .dm-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dm-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .dm-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: all 0.25s ease;
  position: relative;
}

.dm-card:hover {
  border-color: var(--purple-accent);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-sm);
}

.dm-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dm-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(129, 140, 248, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-accent);
}

.dm-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky-accent);
  background: rgba(56, 189, 248, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

.dm-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.dm-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Skill Map Strip */
.skill-map-box {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(20, 40, 75, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
}

.skill-map-head {
  text-align: center;
  margin-bottom: 28px;
}

.skill-map-head h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.skill-map-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
}

.skill-map-node {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-map-arrow {
  color: var(--sky-accent);
  font-weight: bold;
}

/* ================= AI + AUTOMATION MODULE ================= */
.ai-section {
  background: var(--bg-primary);
}

.tools-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

@media (min-width: 640px) {
  .tools-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .tools-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.tool-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.tool-brand-card:hover {
  border-color: var(--sky-accent);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.tool-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  background: rgba(56, 189, 248, 0.12);
  color: var(--sky-accent);
}

.tool-brand-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.tool-brand-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* 8 Automation Systems */
.systems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .systems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .systems-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.system-card {
  background: linear-gradient(170deg, rgba(14, 28, 48, 0.9) 0%, rgba(9, 18, 32, 0.95) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.system-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-accent);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.system-card-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--sky-accent);
  background: rgba(56, 189, 248, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 14px;
}

.system-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.system-flow-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.system-flow-mini div {
  display: flex;
  gap: 6px;
}

.system-flow-mini b {
  color: var(--sky-accent);
  min-width: 68px;
  flex-shrink: 0;
}

/* System Thinking Callout */
.system-thinking-box {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(129, 140, 248, 0.15) 100%);
  border: 1px solid var(--sky-accent);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}

.system-thinking-box h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.system-thinking-box p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

/* ================= 4 PRACTICAL IMPLEMENTATION STEPS ================= */
.impl-section {
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--sky-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number-badge {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(56, 189, 248, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= CAREER & FREELANCING SECTION ================= */
.career-section {
  background: var(--bg-primary);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .career-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .career-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.career-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  transition: all 0.25s ease;
}

.career-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--emerald-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.disclaimer-box {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
}

.disclaimer-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

/* ================= BUSINESS AUTOMATION BEFORE/AFTER ================= */
.biz-auto-section {
  background: var(--bg-secondary);
}

.workflow-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 800px) {
  .workflow-comparison {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

.workflow-card {
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
}

.workflow-card.before {
  background: rgba(244, 63, 94, 0.05);
  border: 1.5px solid rgba(244, 63, 94, 0.25);
}

.workflow-card.after {
  background: linear-gradient(165deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 14, 26, 0.85) 100%);
  border: 1.5px solid var(--emerald-accent);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.15);
}

.workflow-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.workflow-card.before .workflow-head { color: var(--rose-accent); }
.workflow-card.after .workflow-head { color: var(--emerald-accent); }

.workflow-chain {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workflow-node-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
}

.workflow-card.before .workflow-node-item {
  background: rgba(244, 63, 94, 0.08);
  color: #fda4af;
}

.workflow-card.after .workflow-node-item {
  background: rgba(16, 185, 129, 0.1);
  color: #a7f3d0;
}

.workflow-arrow-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.workflow-arrow-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--sky-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
}

@media (max-width: 799px) {
  .workflow-arrow-center {
    flex-direction: row;
    padding: 12px 0;
  }
  .workflow-arrow-circle {
    transform: rotate(90deg);
  }
}

/* ================= WHAT STUDENTS GET ================= */
.deliverables-section {
  background: var(--bg-primary);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliverable-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s ease;
}

.deliverable-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--sky-accent);
  transform: translateY(-2px);
}

.check-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.deliverable-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ================= BUSINESS TOOLKIT / RESOURCE STACK ================= */
.toolkit-section {
  background: var(--bg-secondary);
}

.toolkit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .toolkit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.toolkit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.25s ease;
}

.toolkit-card:hover {
  border-color: var(--gold-accent);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.toolkit-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-accent);
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.toolkit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.toolkit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.toolkit-philosophy-card {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(14, 28, 48, 0.95) 0%, rgba(6, 14, 26, 0.95) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
}

.toolkit-philosophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.toolkit-philosophy-card p {
  font-size: 1.05rem;
  color: var(--gold-accent);
  font-weight: 600;
}

.toolkit-terms-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================= ₹3 LAKH VALUE ANCHOR ================= */
.value-anchor-section {
  background: var(--bg-primary);
  position: relative;
}

.value-table-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(14, 28, 48, 0.95) 0%, rgba(8, 16, 28, 0.98) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
}

.value-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.value-item-row:last-of-type {
  border-bottom: none;
}

.value-item-name {
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-item-name svg {
  color: var(--sky-accent);
  width: 18px;
  height: 18px;
}

.value-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
}

.value-total-box {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px dashed var(--sky-accent);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.value-total-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.value-total-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: var(--gold-accent);
}

.value-footnote {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ================= OFFER REVEAL (₹20,000) ================= */
.offer-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0c1a30 50%, var(--bg-primary) 100%);
  position: relative;
}

.offer-container {
  max-width: 820px;
  margin: 0 auto;
}

.offer-card {
  background: linear-gradient(160deg, #0f2447 0%, #0a172e 60%, #060e1c 100%);
  border: 2px solid var(--sky-accent);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
}

.offer-badge-ribbon {
  position: absolute;
  top: 24px;
  right: -35px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 45px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.offer-header {
  text-align: center;
  margin-bottom: 32px;
}

.offer-header-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--sky-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offer-program-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.offer-price-anchor-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.anchor-value-strike {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.anchor-value-strike s {
  color: #f87171;
  font-weight: 700;
}

.current-offer-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-accent);
  margin-bottom: 6px;
}

.current-offer-price {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold-accent);
  line-height: 1.05;
}

.price-subtext {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.offer-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .offer-checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.offer-check-item svg {
  color: var(--emerald-accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.offer-guarantee-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================= BONUS STACK ================= */
.bonus-section {
  background: var(--bg-secondary);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.06) 0%, rgba(14, 28, 48, 0.85) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.25);
}

.bonus-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-accent);
  background: rgba(245, 158, 11, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.bonus-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.25;
}

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

/* ================= WHY SKILLS TUTORIALS ================= */
.why-section {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all 0.25s ease;
}

.why-card:hover {
  border-color: var(--sky-accent);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-accent);
  margin-bottom: 18px;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= FOUNDER SECTION ================= */
.founder-section {
  background: var(--bg-secondary);
}

.founder-card-wrap {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(14, 28, 48, 0.9) 0%, rgba(8, 16, 28, 0.95) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 768px) {
  .founder-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

.founder-photo-wrap {
  position: relative;
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}

.founder-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.28) 0%, rgba(10, 22, 40, 0.95) 75%);
  border: 2px solid rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-lg), 0 0 45px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 20px;
}

.founder-real-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.35s ease;
}

.founder-img-frame:hover .founder-real-img {
  transform: scale(1.03);
}

.founder-badge-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(6, 14, 26, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.founder-badge-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.founder-badge-role {
  font-size: 0.78rem;
  color: var(--sky-accent);
  font-weight: 600;
}

.founder-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 4px;
}

.founder-role-title {
  font-size: 0.95rem;
  color: var(--sky-accent);
  font-weight: 600;
  margin-bottom: 18px;
}

.founder-bio {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.68;
  margin-bottom: 22px;
}

.founder-pillar-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 26px;
}

.founder-pillar-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-heading);
}

.founder-quote-banner {
  background: rgba(37, 99, 235, 0.12);
  border-left: 3px solid var(--sky-accent);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.founder-quote-banner p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

/* ================= OBJECTION HANDLING ================= */
.objections-section {
  background: var(--bg-primary);
}

.objections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .objections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.25s ease;
}

.objection-card:hover {
  border-color: var(--sky-accent);
  background: var(--bg-card-hover);
}

.objection-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.objection-q-badge {
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose-accent);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.objection-a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 38px;
}

/* ================= RESPONSIBLE URGENCY & VIEWER OFFER ================= */
.viewer-offer-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d1b33 100%);
  position: relative;
}

.viewer-offer-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(160deg, #102444 0%, #0a172e 100%);
  border: 2px solid var(--whatsapp-color);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  box-shadow: 0 0 50px rgba(37, 211, 102, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.viewer-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.viewer-offer-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
}

.viewer-offer-card p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 28px auto;
}

.viewer-code-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed var(--whatsapp-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: inline-block;
  margin-bottom: 26px;
}

.viewer-code-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.viewer-code-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.45rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.08em;
}

.viewer-action-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.viewer-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* ================= FAQ ACCORDION ================= */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  transition: color 0.2s ease;
}

.faq-item.active .faq-question {
  color: var(--sky-accent);
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--blue-primary);
  color: #fff;
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 22px 24px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ================= FINAL CTA ================= */
.final-cta-section {
  background: linear-gradient(175deg, var(--bg-secondary) 0%, #06101f 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 36px;
}

.final-brand-philosophy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--sky-accent);
  margin-bottom: 32px;
}

.final-brand-philosophy span.bullet {
  color: var(--gold-accent);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.final-founder-sign {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.final-founder-sign strong {
  color: var(--text-white);
}

/* ================= FOOTER ================= */
.site-footer {
  background: #030811;
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--sky-accent);
}

/* ================= STICKY MOBILE CTA ================= */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-card);
  padding: 10px 16px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sticky-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sticky-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--gold-accent);
}

.sticky-action-btns {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.sticky-action-btns .btn {
  padding: 10px 16px;
  font-size: 0.88rem;
}

/* ================= MODAL DIALOG ================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 17, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: linear-gradient(165deg, #0e203c 0%, #091528 100%);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 30px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(37, 99, 235, 0.3);
  transform: translateY(20px) scale(0.96);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(244, 63, 94, 0.2);
  color: var(--rose-accent);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--sky-accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.form-control::placeholder {
  color: #475569;
}

.modal-price-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
}

.modal-price-pill span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-price-pill strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-accent);
}

/* Modal Success Step */
.modal-step-success {
  display: none;
  text-align: center;
  padding: 10px 0;
}

.success-check-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--emerald-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-accent);
  margin: 0 auto 18px auto;
  font-size: 1.8rem;
}

.modal-step-success h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.modal-step-success p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= COHORT FOMO BOX (OFFER SECTION) ================= */
.cohort-fomo-box {
  background: linear-gradient(135deg, rgba(14, 28, 48, 0.9) 0%, rgba(20, 38, 66, 0.9) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px auto 32px auto;
  max-width: 620px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(245, 158, 11, 0.12);
  text-align: left;
}

.cohort-fomo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cohort-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.cohort-seats-text {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.cohort-seats-text strong {
  color: #ffffff;
}

.cohort-progress-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.cohort-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b 0%, #10b981 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cohort-fomo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #94a3b8;
}

.cohort-fomo-footer strong {
  color: var(--gold-accent);
}

.cohort-batch-date {
  color: #cbd5e1;
  font-weight: 600;
}

/* ================= LIVE SOCIAL PROOF FOMO TOAST ================= */
.fomo-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  max-width: 380px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(37, 99, 235, 0.18);
  opacity: 0;
  transform: translateY(25px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fomo-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.fomo-toast-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.fomo-toast-body {
  flex: 1;
  min-width: 0;
}

.fomo-toast-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.fomo-toast-name {
  color: var(--sky-accent);
  font-weight: 700;
}

.fomo-toast-meta {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.fomo-toast-action {
  color: #cbd5e1;
}

.fomo-toast-time {
  color: #64748b;
  font-size: 0.75rem;
}

.fomo-toast-close {
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.fomo-toast-close:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .fomo-toast {
    left: 14px;
    right: 14px;
    bottom: 76px;
    max-width: calc(100% - 28px);
    padding: 11px 14px;
  }
  .fomo-toast-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* ================= DESKTOP FLOATING STICKY CTA ================= */
.desktop-floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: none;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) {
  .desktop-floating-cta {
    display: flex;
  }
}

.desktop-floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta-btn {
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5), 0 0 20px rgba(245, 158, 11, 0.3);
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-full);
}

.floating-whatsapp-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #1eb857 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}
