/* ============================================================
   Zazu Video – style.css
   Complete rewrite for AI short-clip sales page
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html {
  font-family: 'Inter', system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #09090b;
  color: #fff;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
  letter-spacing: -0.02em;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.45); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.7); }

/* ── Selection ── */
::selection { background: rgba(139,92,246,0.35); color: #fff; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Primary button ── */
.btn-primary {
  display: inline-block;
  background: #FFE566;
  color: #0a0614;
  font-weight: 800;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(255, 229, 102, 0.3);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(255, 229, 102, 0.45);
}

.btn-primary:active { transform: translateY(0); }

/* ── Secondary button ── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.btn-secondary:hover { color: #fff; }

/* ── Announcement bar ── */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #b45309 0%, #d97706 40%, #f59e0b 70%, #d97706 100%);
  color: #000;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}

/* ── Navbar scroll state ── */
#navbar {
  position: fixed;
  top: 40px; /* below announcement bar */
  left: 0;
  right: 0;
  z-index: 90;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, top 0.3s;
}

#navbar.scrolled {
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Hero glow ── */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 10%, rgba(124, 58, 237, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(147, 51, 234, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 20% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 55%);
}

/* ── Hero feature cards (replaces hero pills) ── */
.hero-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.hero-feature-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12);
}

.hero-feature-card .hfc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  flex-shrink: 0;
}

.hero-feature-card .hfc-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 3px;
}

.hero-feature-card .hfc-desc {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.45;
}

/* ── Stat cards ── */
.stat-card {
  background: rgba(24, 24, 27, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.stat-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #a78bfa;
  line-height: 1;
  margin-bottom: 8px;
}

/* ── Case study cards ── */
.case-study-card {
  background: rgba(24, 24, 27, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 4px solid #7c3aed;
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.case-study-card:hover {
  border-left-color: #a78bfa;
  transform: translateY(-2px);
}

/* ── Case Study v2 (vertical stacked, with chart) ── */
.case-study-card-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(18, 16, 32, 0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 56px 52px;
  margin-bottom: 28px;
}

.case-study-card-v2--flip {
  /* visual on left, text on right — already in HTML order */
}

.cs-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.cs-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cs-body {
  color: #9ca3af;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cs-stats {
  display: flex;
  gap: 32px;
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.cs-stat-label {
  font-size: 0.78rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Chart placeholder */
.cs-chart-placeholder {
  background: rgba(30, 24, 54, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cs-chart-caption {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
}

/* Bar chart */
.cs-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  width: 100%;
}

.cs-bar {
  flex: 1;
  background: rgba(124,58,237,0.25);
  border-radius: 6px 6px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 6px;
  transition: background 0.3s;
}

.cs-bar span {
  font-size: 0.58rem;
  color: #6b7280;
  text-align: center;
}

.cs-bar--highlight {
  background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}

.cs-bar--highlight span {
  color: #c4b5fd;
}

/* Before/After split chart */
.cs-split-chart {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  height: 140px;
  width: 100%;
  justify-content: center;
}

.cs-split-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
}

.cs-split-label {
  font-size: 0.72rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cs-split-bar {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.cs-split-bar--before {
  background: rgba(255,255,255,0.12);
}

.cs-split-bar--after {
  background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
}

.cs-split-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #a78bfa;
}

@media (max-width: 768px) {
  .case-study-card-v2 {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }
  .case-study-card-v2--flip .cs-visual { order: -1; }
}

/* ── Pain items ── */
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #fca5a5;
  line-height: 1.5;
}

.pain-item .pain-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Option cards ── */
/* ── Feature Grid (clipbee.ai style — edge-to-edge 2-col) ── */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feat-cell {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  gap: 0;
  overflow: hidden;
}

.feat-cell--light {
  background: #1c1c22;
  border: 1px solid rgba(255,255,255,0.08);
}

.feat-cell--dark {
  background: #0e0a1e;
  border: 1px solid rgba(124,58,237,0.18);
}

.feat-visual {
  flex: 0 0 45%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.feat-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e1830 0%, #111 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feat-img-placeholder--dark {
  background: linear-gradient(135deg, #1a1333 0%, #0a0814 100%);
  border-color: rgba(124,58,237,0.15);
}

.feat-text {
  flex: 1;
  padding: 52px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  justify-content: center;
}

.feat-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #f9fafb;
  line-height: 1.2;
}

.feat-desc {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .feat-cell {
    flex-direction: column;
    min-height: auto;
  }
  .feat-visual {
    min-height: 200px;
    width: 100%;
  }
  .feat-text { padding: 28px; }
  .feat-title { font-size: 1.3rem; }
}

/* ── Option Cards v2 (clipbee.ai style — stacked, split layout) ── */
.option-card-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 20px;
}

.option-card-v2--bad {
  background: rgba(20, 10, 10, 0.92);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.option-card-v2--good {
  background: rgba(18, 10, 32, 0.95);
  border: 2px solid rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.2);
}

.oc-text {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.oc-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 8px 20px;
  width: fit-content;
}

.oc-badge--bad {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.oc-badge--good {
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.5);
}

.oc-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.oc-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.oc-body {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.75;
}

.oc-visual {
  background: rgba(12, 8, 20, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-visual--glow {
  background: rgba(18, 10, 35, 0.9);
}

.oc-visual-inner {
  width: 75%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(135deg, #1a1333 0%, #0f0f1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .option-card-v2 {
    grid-template-columns: 1fr;
  }
  .option-card-v2--flip .oc-visual { order: 0; }
  .option-card-v2--flip .oc-text { order: 1; }
  .oc-text { padding: 36px 28px; }
  .oc-visual { min-height: 220px; }
  .oc-title { font-size: 1.6rem; }
}

.option-card {
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card--bad {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.option-card--bad .option-label {
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.option-card--good {
  background: rgba(124, 58, 237, 0.1);
  border: 2px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.18), inset 0 0 40px rgba(124, 58, 237, 0.04);
  position: relative;
}

.option-card--good .option-label {
  color: #a78bfa;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.option-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── Feature cards ── */
.feature-card {
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.14);
}

.feature-card .feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 10px;
  color: #a78bfa;
  margin-bottom: 14px;
}

/* ── Zazu effect stats ── */
.zazu-effect-stat {
  text-align: center;
  padding: 40px 28px;
}

.zazu-effect-stat .effect-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

/* ── Without/With Zazu split ── */
/* ── VS Comparison (clipbee.ai style) ── */
.vs-comparison-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}

.vs-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vs-card--bad {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.vs-card--good {
  background: #0e0a1a;
  border: 2px solid rgba(124,58,237,0.35);
  box-shadow: 0 0 60px rgba(124,58,237,0.18);
}

.vs-card-header {
  padding: 24px 28px 0;
}

.vs-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #9ca3af;
  text-align: center;
}

.vs-card-title--good {
  color: #a78bfa;
}

.vs-card-image {
  padding: 20px 28px;
}

.vs-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e1830 0%, #111 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vs-img-placeholder--good {
  background: linear-gradient(135deg, #1a1333 0%, #0d0a1e 100%);
  border-color: rgba(124,58,237,0.2);
}

.vs-card-items {
  padding: 0 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.vs-item--bad { color: #9ca3af; }
.vs-item--good { color: #e5e7eb; }

.vs-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 2px;
}

.vs-icon--bad {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}

.vs-icon--good {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}

.vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-top: 200px;
  flex-shrink: 0;
  align-self: start;
  box-shadow: 0 0 24px rgba(124,58,237,0.5);
}

@media (max-width: 768px) {
  .vs-comparison-wrap {
    grid-template-columns: 1fr;
  }
  .vs-badge {
    margin: 0 auto;
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }
}

.split-col {
  border-radius: 20px;
  padding: 36px 28px;
}

.split-col--bad {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.split-col--good {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.split-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.split-item:last-child { border-bottom: none; }

/* ── Steps ── */
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  border: 2px solid rgba(139, 92, 246, 0.4);
  font-weight: 900;
  font-size: 1.15rem;
  color: #a78bfa;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(139,92,246,0.35), transparent);
  margin: 6px auto;
}

/* ── Niche cards ── */
.niche-card {
  background: rgba(24, 24, 27, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 26px 22px;
  transition: border-color 0.25s, transform 0.25s;
}

.niche-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
}

/* ── Testimonial cards ── */
.testimonial-card {
  background: rgba(24, 24, 27, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}

/* ── Micro-testimonials ── */
.micro-testimonial {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.85rem;
  font-style: italic;
  color: #d1d5db;
}

/* ── Avatar ── */
.avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}

/* ── Comparison table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table .col-zazu {
  background: rgba(124, 58, 237, 0.07);
}

.comparison-good { color: #4ade80; font-weight: 700; }
.comparison-bad  { color: #f87171; }
.comparison-neutral { color: #9ca3af; }

/* ── Pricing section ── */
.pricing-section {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.14) 0%, rgba(9,9,11,0.95) 70%);
  border-radius: 28px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 64px 48px;
}

.pricing-price {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

/* ── Feature list items (pricing) ── */
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.5;
}

.feature-list-item .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── Countdown box ── */
.countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-digit {
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  min-width: 52px;
  padding: 8px 10px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  line-height: 1;
}

.countdown-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.65);
}

.countdown-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.5);
  margin-bottom: 16px;
}

/* ── Large hero countdown (pricing section) ── */
.countdown-digit-lg {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  min-width: 68px;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
  line-height: 1;
}

.countdown-label-lg {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-top: 4px;
  text-align: center;
}

.countdown-sep-lg {
  font-size: 2rem;
  font-weight: 900;
  color: #7c3aed;
  margin-bottom: 20px;
}

/* ── Demo video placeholder ── */
.demo-placeholder {
  background: rgba(24,24,27,0.8);
  border: 2px dashed rgba(124, 58, 237, 0.35);
  border-radius: 20px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #6b7280;
}

/* ── Section labels ── */
.section-label {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 12px;
}

/* ── Guarantee badge ── */
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: left;
}

/* ── FAQ items ── */
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 24px;
}

/* ── Numbered list items (Introducing Zazu) ── */
/* ── Niche Zigzag Rows ── */
.niche-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}

.niche-row-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.niche-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.niche-row-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.niche-row-desc {
  color: #9ca3af;
  font-size: 1.05rem;
  line-height: 1.7;
}

.niche-row-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.niche-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1333 0%, #0f0f1a 100%);
  border: 2px solid rgba(124,58,237,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.niche-img-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.niche-made-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .niche-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .niche-row--flip .niche-row-visual { order: -1; }
  .niche-row-title { font-size: 1.3rem; }
}

/* ── Intro Split (v2) ── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 32px;
  background: rgba(18, 14, 30, 0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 56px 52px;
}

.intro-split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-num-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

.intro-split-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.intro-split-body {
  color: #9ca3af;
  font-size: 1.05rem;
  line-height: 1.75;
}

.intro-split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1333 0%, #0f0f1a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #4b5563;
}

.intro-visual-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.intro-visual-placeholder p {
  font-size: 0.85rem;
  color: #6b7280;
}

@media (max-width: 768px) {
  .intro-split {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }
  .intro-split--flip .intro-split-visual { order: -1; }
}

.intro-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.intro-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 20px rgba(124,58,237,0.35);
}

/* ── Scroll reveal animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.38s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.70s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)), transform 0.65s ease calc(var(--delay, 0s));
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Strikethrough price ── */
.price-strike {
  text-decoration: line-through;
  color: #6b7280;
}

/* ── Section divider glow ── */
.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
}

/* ── Pulsing dot ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.pulse-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── Table wrapper for horizontal scroll on mobile ── */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Mobile menu ── */
#mobile-menu {
  background: rgba(9,9,11,0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
}

/* ── Product mockup placeholder ── */
.product-mockup {
  position: relative;
  overflow: hidden;
  background: rgba(39, 39, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  height: 400px;
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.18), 0 0 200px rgba(124, 58, 237, 0.06);
}

.product-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.product-mockup-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: #6b7280;
}

/* ── Step screenshot placeholder ── */
.step-screenshot {
  position: relative;
  overflow: hidden;
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  height: 192px;
}

.step-screenshot-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── How It Works step row (side-by-side) ── */
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .step-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Pain item SVG icon ── */
.pain-icon-svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #f87171;
}

/* ── Violet SVG checkmark for lists ── */
.check-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #7c3aed;
}

/* ── Niche card colored dot ── */
.niche-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
}

/* ── Responsive adjustments ── */
@media (max-width: 768px) {
  .pricing-section { padding: 40px 24px; }
  .pricing-price { font-size: 4rem; }
  .countdown-digit-lg { font-size: 1.6rem; min-width: 52px; }
  .zazu-effect-stat .effect-number { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .countdown-digit { font-size: 1.15rem; min-width: 40px; }
  .announcement-bar { font-size: 0.72rem; }
}

/* ── V2: Multi-line headline (clipbee.ai style) ── */
/* ── Hero CTA — white/bright for contrast against dark background ── */
.hero-cta-btn {
  display: inline-block;
  background: #FFE566;
  color: #0a0614;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(255, 229, 102, 0.3);
}

.hero-cta-btn:hover {
  background: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(255, 229, 102, 0.45);
}

.headline-light {
  font-weight: 500;
  color: #d1d5db;
  font-size: 0.72em;
  display: block;
  margin-bottom: 4px;
}

.headline-box {
  display: inline-block;
  background: rgba(30, 24, 54, 0.9);
  border-radius: 14px;
  padding: 4px 22px;
  color: #fff;
}

.headline-heavy {
  display: block;
  font-size: 1.15em;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ── V2: Big feature cards (clipbee.ai style) ── */
.big-feature-card {
  background: rgba(24, 22, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.big-feature-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.15);
}

.big-feature-card .bfc-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  flex-shrink: 0;
}

.big-feature-card .bfc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.big-feature-card .bfc-title strong {
  font-weight: 900;
}

.big-feature-card .bfc-desc {
  font-size: 0.92rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* ── V2: Hero demo frame ── */
.hero-demo-frame {
  position: relative;
  margin-top: 64px;
  padding: 0 20px;
}

.hero-demo-inner {
  background: #1a1333;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  max-height: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #6b7280;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.15),
    0 0 80px rgba(124, 58, 237, 0.25),
    0 40px 100px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.hero-demo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating vertical clip previews */
.floating-clip {
  position: absolute;
  width: 130px;
  border-radius: 14px;
  background: #2a1f4a;
  border: 2px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-clip--left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
}

.floating-clip--right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(6deg);
}

@media (max-width: 960px) {
  .floating-clip { display: none; }
  .hero-demo-frame { padding: 0; }
}

/* ── Clips Gallery ── */
.clips-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.clip-thumb {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.clip-thumb--tall {
  aspect-ratio: 9/14;
}

.clip-thumb--featured {
  aspect-ratio: 9/14;
  grid-row: span 1;
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(124,58,237,0.3);
}

.clip-thumb--wide {
  aspect-ratio: 16/9;
  grid-column: span 2;
}

.clip-thumb-inner {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, #1a1333 0%, #0f0f1a 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .clips-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clip-thumb--wide { grid-column: span 2; }
  .clip-thumb--featured { transform: none; }
}

/* ── Clips Gallery 2 (3×2 landscape) ── */
.clips-gallery-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.clip-thumb-2 {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4/3;
}

.clip-thumb-inner-2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1333 0%, #0f0f1a 100%);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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