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

/* ══════════════════════════════════════════════════════
   DESIGN SYSTEM — ListMyProduct.in AI Listing Suite
   Colors, spacing, and components for the platform
   ══════════════════════════════════════════════════════ */

:root {
  /* ── Brand Palette (from extension tailwind.config.js) ── */
  --brand-50:  #f5f3ff;
  --brand-100: #ede9fe;
  --brand-200: #ddd6fe;
  --brand-300: #c4b5fd;
  --brand-400: #a78bfa;
  --brand-500: #7C3AED;
  --brand-600: #6d28d9;
  --brand-700: #5b21b6;
  --brand-800: #4c1d95;
  --brand-900: #2e1065;
  --accent-pink: #EC4899;
  --accent-rose: #f43f5e;

  /* ── Surface & Text (from extension index.css) ── */
  --bg-main:     #ffffff;
  --bg-card:     #ffffff;
  --bg-elevated: #f8fafc;
  --bg-subtle:   #f1f5f9;
  --text-main:   #0f172a;
  --text-secondary: #334155;
  --text-muted:  #64748b;
  --text-faint:  #94a3b8;
  --border-subtle: rgba(124, 58, 237, 0.1);
  --border-main: #e2e8f0;
  --brand-glow:  rgba(124, 58, 237, 0.05);

  /* ── Layout ── */
  --nav-height: 72px;
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar (from extension) ────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.15);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-500); }

/* ══════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-500);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 500;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   COMPONENTS — Mirroring extension's Tailwind utilities
   ══════════════════════════════════════════════════════ */

/* ── Glass Card (from extension .glass-card) ───────── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-main);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.glass-elevated {
  background: var(--bg-elevated);
  border: 1px solid var(--border-main);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ── Gradient Button (from extension .btn-gradient) ── */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-pink));
  color: white !important;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -5px rgba(124, 58, 237, 0.35);
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px -5px rgba(124, 58, 237, 0.5);
}

.btn-gradient:active {
  transform: scale(0.98);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-main);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--brand-50);
  border-color: var(--brand-200);
  color: var(--brand-600);
}

/* ── Badge (from extension tier badges) ────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  border: 1px solid;
}

.badge-brand {
  background: var(--brand-500);
  color: white;
  border-color: var(--brand-600);
}

.badge-outline {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border-color: var(--border-main);
}

.badge-pink {
  background: #fdf2f8;
  color: #be185d;
  border-color: #fbcfe8;
}

/* ── Text Gradient (from extension .text-gradient) ─── */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-500), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow Background (from extension .bg-glow) ─────── */
.bg-glow {
  position: relative;
}

.bg-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(236, 72, 153, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS — From extension keyframes
   ══════════════════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

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

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.2); }
  50%      { box-shadow: 0 0 0 12px rgba(124, 58, 237, 0); }
}

@keyframes countDown {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes urgencySlide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes tickerFade {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}

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

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes rotateText {
  0%, 20% { opacity: 1; transform: translateY(0); }
  25%, 45% { opacity: 0; transform: translateY(-100%); }
  50%, 70% { opacity: 1; transform: translateY(0); }
  75%, 95% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out both;
}

.animate-slide-up {
  animation: slideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Staggered delay classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════════════
   URGENCY TOP BAR
   ══════════════════════════════════════════════════════ */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: linear-gradient(90deg, #7C3AED, #EC4899, #f43f5e, #EC4899, #7C3AED);
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
  padding: 10px 0;
  text-align: center;
  transition: transform 0.3s ease;
}

.urgency-bar.hidden {
  transform: translateY(-100%);
}

.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.urgency-bar-text {
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.urgency-bar-text .emoji {
  margin-right: 4px;
}

.urgency-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  color: white;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.urgency-bar-cta:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.05);
}

.urgency-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.urgency-bar-close:hover {
  color: white;
}

/* Shift header when urgency bar is visible */
body.has-urgency .site-header {
  top: 40px;
}

body.has-urgency .hero {
  padding-top: 180px;
}

/* ══════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-bottom-color: var(--border-main);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ── Logo (from extension Header.jsx) ──────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-pink));
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-title span {
  color: var(--brand-500);
}

.logo-subtitle {
  font-size: 9px;
  font-weight: 900;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ── Nav Links ─────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-500);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-500);
  border-radius: 1px;
}

.nav-cta {
  padding: 10px 20px !important;
  font-size: 11px !important;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════
   VIDEO TUTORIAL SECTION
   ══════════════════════════════════════════════════════ */
.video-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border-main);
  border-bottom: 1px solid var(--border-main);
  contain: content;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 80px -20px rgba(124, 58, 237, 0.2),
    0 0 0 1px rgba(124, 58, 237, 0.1);
  aspect-ratio: 16 / 9;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.5) 100%
  );
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 2;
}

.video-play-overlay:hover {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.4) 100%
  );
}

.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--accent-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.3);
  animation: pulseRing 2s ease-out infinite;
}

.video-play-overlay:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 16px 50px rgba(124, 58, 237, 0.5);
}

.video-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

.video-play-label {
  margin-top: 16px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.video-poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1033 0%, #0f0f23 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-poster.hidden {
  display: none;
}

.video-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 8px 16px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-600);
}

/* ══════════════════════════════════════════════════════
   AD CREATIVE SECTIONS
   ══════════════════════════════════════════════════════ */
.ad-banner-section {
  padding: 60px 0;
  background: var(--bg-elevated);
}

.ad-banner {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  box-shadow: 0 20px 60px -15px rgba(124, 58, 237, 0.25);
  transition: transform 0.3s ease;
}

.ad-banner:hover {
  transform: translateY(-4px);
}

.ad-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.ad-banner-content {
  padding: 48px 40px;
  color: white;
}

.ad-banner-content .ad-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.ad-banner-content h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ad-banner-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.ad-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s;
}

.ad-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.ad-banner-visual {
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ad-banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-banner-visual .ad-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.4);
}

.ad-banner-visual .ad-placeholder-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.ad-banner-visual .ad-placeholder-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Side-by-side ad + testimonial */
.ad-testimonial-section {
  padding: 60px 0;
}

.ad-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.ad-testimonial-card {
  padding: 40px;
  border-radius: var(--radius-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-main);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.ad-testimonial-quote {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.ad-creative-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #f5f3ff, #fdf2f8);
  border: 1px solid var(--brand-100);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ad-creative-card:hover {
  transform: translateY(-4px);
}

.ad-creative-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════
   LIVE ACTIVITY TICKER
   ══════════════════════════════════════════════════════ */
.activity-ticker {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  animation: slideInRight 0.5s ease-out;
}

.activity-ticker.hidden {
  display: none;
}

.ticker-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: white;
  border: 1px solid var(--border-main);
  border-radius: var(--radius-lg);
  box-shadow:
    0 12px 36px rgba(0,0,0,0.1),
    0 0 0 1px rgba(124, 58, 237, 0.05);
  max-width: 320px;
  animation: tickerFade 4s ease-in-out forwards;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulseGlow 2s ease-in-out infinite;
}

.ticker-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ticker-text strong {
  color: var(--text-main);
}

.ticker-time {
  font-size: 10px;
  color: var(--text-faint);
  font-weight: 700;
}

.ticker-close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-main);
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.activity-ticker:hover .ticker-close {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════
   FLOATING CTA BUTTON
   ══════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

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

.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-pink));
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(124, 58, 237, 0.4),
    0 0 0 4px rgba(124, 58, 237, 0.1);
  animation: floatCta 3s ease-in-out infinite;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.floating-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 2.5s infinite;
}

.floating-cta-btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 16px 40px rgba(124, 58, 237, 0.5),
    0 0 0 4px rgba(124, 58, 237, 0.15);
}

.floating-cta-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--brand-400);
  animation: pulseRing 2s ease-out infinite;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   EXIT INTENT POPUP
   ══════════════════════════════════════════════════════ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.exit-popup {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: bounceIn 0.5s ease-out;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.exit-popup-close:hover {
  background: var(--text-main);
  color: white;
}

.exit-popup-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.exit-popup h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.2;
}

.exit-popup p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.exit-popup-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 24px;
}

.exit-popup .btn-gradient {
  width: 100%;
  padding: 16px;
  font-size: 13px;
}

.exit-popup-subtext {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   SPOTS REMAINING COUNTER
   ══════════════════════════════════════════════════════ */
.spots-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 800;
  color: #dc2626;
  margin-top: 16px;
}

.spots-counter .spots-num {
  font-weight: 900;
  font-size: 14px;
}

.spots-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   TEXT ROTATOR
   ══════════════════════════════════════════════════════ */
.text-rotator {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
}

.text-rotator-word {
  display: block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.text-rotator-word.active {
  opacity: 1;
  transform: translateY(0);
}

.text-rotator-word.exit-up {
  opacity: 0;
  transform: translateY(-100%);
  position: absolute;
  top: 0;
  left: 0;
}

.text-rotator-word.enter-up {
  opacity: 0;
  transform: translateY(100%);
  position: absolute;
  top: 0;
  left: 0;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text-main);
  color: white;
  padding: 80px 0 32px;
}

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

.footer-brand-desc {
  color: var(--text-faint);
  margin-top: 16px;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #cbd5e1;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--brand-400);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-faint);
}

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

.footer-bottom-links a {
  color: var(--text-faint);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--brand-400);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* ── TABLET (≤1024px) ──────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { 
    display: none; 
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: white;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-main);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .nav-links.show { 
    display: flex; 
    animation: fadeIn 0.3s ease-out;
  }

  .nav-links a {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .nav-links a.active::after {
    bottom: -8px;
  }

  .mobile-toggle { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section { padding: 64px 0; }

  /* Ad banner responsive */
  .ad-banner-inner {
    grid-template-columns: 1fr;
  }
  .ad-banner-visual {
    min-height: 200px;
  }

  .ad-testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Urgency bar */
  .urgency-bar-text {
    font-size: 10px;
  }
  body.has-urgency .site-header {
    top: 36px;
  }
  body.has-urgency .hero {
    padding-top: 170px;
  }

  /* Activity ticker — smaller on tablet */
  .activity-ticker {
    bottom: 12px;
    left: 12px;
  }
  .ticker-card {
    max-width: 260px;
    padding: 10px 14px;
  }
}

/* ── MOBILE (≤768px) ───────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-footer {
    padding: 48px 0 24px;
  }

  /* Video */
  .video-container {
    border-radius: 12px;
  }
  .video-play-btn {
    width: 64px;
    height: 64px;
  }
}

/* ── SMALL MOBILE (≤480px) ─────────────────────────── */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .container { padding: 0 16px; }

  /* Video */
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  .video-play-icon {
    border-width: 10px 0 10px 18px;
  }

  /* Floating CTA */
  .floating-cta-btn {
    font-size: 10px;
    padding: 12px 18px;
  }

  /* Activity ticker */
  .activity-ticker {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .ticker-card {
    max-width: 100%;
  }

  /* Exit popup */
  .exit-popup {
    padding: 32px 24px;
    max-width: calc(100vw - 32px);
  }
  .exit-popup h3 {
    font-size: 1.2rem;
  }
  .exit-popup-offer {
    font-size: 12px;
    padding: 8px 14px;
  }

  /* Urgency */
  .urgency-bar-cta {
    display: none;
  }
  body.has-urgency .hero {
    padding-top: 160px;
  }

  /* Footer */
  .footer-brand-desc {
    max-width: 100%;
    font-size: 13px;
  }
  .footer-col h4 {
    margin-bottom: 12px;
  }
  .footer-col ul {
    gap: 8px;
  }
}

/* ── VERY SMALL (≤360px) ───────────────────────────── */
@media (max-width: 360px) {
  .urgency-bar-text {
    font-size: 9px;
  }
  .floating-cta-btn {
    font-size: 9px;
    padding: 10px 14px;
  }
  .exit-popup {
    padding: 24px 16px;
  }
  .exit-popup h3 {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   AI AD CREATIVE COMPONENT
   ========================================================================== */
.ad-mockup-wrapper {
  width: 100%;
  max-width: 360px;
  height: 240px;
  margin: auto;
  position: relative;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-scan-window {
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 30, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(124, 58, 237, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: floatWindow 4s ease-in-out infinite;
}

.ad-scan-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ad-scan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.ad-scan-dot.red { background: #ef4444; }
.ad-scan-dot.yellow { background: #f59e0b; }
.ad-scan-dot.green { background: #10b981; }

.ad-scan-title {
  margin-left: 6px;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ad-scan-body {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 16px;
  padding: 16px;
  flex-grow: 1;
  align-items: center;
}

/* Product Preview Panel */
.ad-product-preview {
  height: 100%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.3);
}

.ad-product-emoji {
  font-size: 42px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  animation: pulseEmoji 3s ease-in-out infinite;
}

.ad-laser-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ec4899, #7c3aed, #ec4899, transparent);
  box-shadow: 0 0 8px #ec4899, 0 0 16px #7c3aed;
  animation: laserScan 2s ease-in-out infinite alternate;
}

.ad-scan-status {
  position: absolute;
  bottom: 8px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  animation: blinkStatus 1.5s infinite;
}

/* Simulated Form Fields */
.ad-form-simulate {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.ad-field-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  overflow: hidden;
}

.ad-field-label {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.ad-field-value {
  font-size: 11px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid transparent;
}

/* Custom Typing Animations for Ad Banner */
.typing-1 {
  width: 0;
  animation: typeWord1 6s steps(20, end) infinite;
}

.typing-2 {
  width: 0;
  animation: typeWord2 6s steps(20, end) infinite;
}

.typing-3 {
  width: 0;
  animation: typeWord3 6s steps(20, end) infinite;
}

.ad-autofill-badge {
  position: absolute;
  inset: 0;
  background: rgba(124, 58, 237, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0);
  opacity: 0;
  animation: popAutofill 6s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

/* Animations */
@keyframes floatWindow {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
  50% { transform: translateY(-8px) rotateX(-2deg) rotateY(2deg); }
}

@keyframes laserScan {
  0% { top: 0%; opacity: 0.3; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0.3; }
}

@keyframes pulseEmoji {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 8px 16px rgba(124, 58, 237, 0.4)); }
}

@keyframes blinkStatus {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes typeWord1 {
  0%, 10% { width: 0; border-color: #a78bfa; }
  25%, 70% { width: 100%; border-color: transparent; }
  75%, 100% { width: 0; border-color: transparent; }
}

@keyframes typeWord2 {
  0%, 25% { width: 0; border-color: transparent; }
  26%, 28% { width: 0; border-color: #a78bfa; }
  45%, 70% { width: 100%; border-color: transparent; }
  75%, 100% { width: 0; border-color: transparent; }
}

@keyframes typeWord3 {
  0%, 45% { width: 0; border-color: transparent; }
  46%, 48% { width: 0; border-color: #a78bfa; }
  65%, 70% { width: 100%; border-color: transparent; }
  75%, 100% { width: 0; border-color: transparent; }
}

@keyframes popAutofill {
  0%, 65% { transform: scale(0.6); opacity: 0; pointer-events: none; }
  70%, 90% { transform: scale(1); opacity: 1; pointer-events: auto; }
  95%, 100% { transform: scale(0.9); opacity: 0; pointer-events: none; }
}

/* ══ LEAD CAPTURE MODAL ══════════════════════════ */
.lead-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  padding: 16px;
}
.lead-overlay.active { opacity: 1; visibility: visible; }

.lead-modal {
  background: var(--bg-main);
  border: 1px solid var(--border-main);
  border-radius: var(--radius-2xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  width: 100%; max-width: 420px;
  position: relative;
  animation: leadSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
@keyframes leadSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border-main);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--text-muted);
  transition: all 0.2s; z-index: 2;
}
.lead-modal-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

.lead-modal-header {
  padding: 32px 28px 0;
  text-align: center;
}
.lead-modal-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.08));
  border: 1px solid rgba(124,58,237,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px;
}
.lead-modal-header h3 {
  font-size: 1.25rem; font-weight: 900; color: var(--text-main);
  margin-bottom: 4px;
}
.lead-modal-header p {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.15em;
}

.lead-tabs {
  display: flex; gap: 4px; padding: 4px;
  background: var(--bg-elevated); border: 1px solid var(--border-main);
  border-radius: 12px; margin: 20px 28px 0;
}
.lead-tab {
  flex: 1; padding: 8px 0; text-align: center;
  font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.1em; border-radius: 10px;
  cursor: pointer; transition: all 0.2s;
  border: none; background: none; color: var(--text-muted);
}
.lead-tab.active {
  background: white; color: var(--brand-600);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.lead-form { padding: 24px 28px 28px; }
.lead-form-group { margin-bottom: 14px; }
.lead-form-group label {
  display: block; font-size: 10px; font-weight: 900;
  color: var(--text-secondary); text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 6px; padding-left: 2px;
}
.lead-form-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border-main); border-radius: 12px;
  font-size: 14px; font-weight: 500; color: var(--text-main);
  transition: all 0.2s; background: white;
  box-sizing: border-box;
}
.lead-form-input:focus {
  outline: none; border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.08);
}
.lead-form-input::placeholder { color: var(--text-faint); }

.lead-phone-wrap {
  display: flex;
}
.lead-phone-prefix {
  display: inline-flex; align-items: center;
  padding: 0 12px; background: var(--bg-elevated);
  border: 1px solid var(--border-main); border-right: none;
  border-radius: 12px 0 0 12px;
  font-size: 13px; font-weight: 700; color: var(--text-muted);
  white-space: nowrap;
}
.lead-phone-wrap .lead-form-input {
  border-radius: 0 12px 12px 0;
}

.lead-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.lead-submit {
  width: 100%; padding: 14px; margin-top: 6px;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-pink));
  color: white; border: none; border-radius: 12px;
  font-size: 12px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.08em; cursor: pointer;
  box-shadow: 0 8px 24px rgba(124,58,237,0.25);
  transition: all 0.3s;
}
.lead-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(124,58,237,0.35); }
.lead-submit:active { transform: scale(0.98); }
.lead-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.lead-msg {
  padding: 10px 14px; border-radius: 10px;
  font-size: 12px; font-weight: 700; text-align: center;
  margin-bottom: 12px;
}
.lead-msg.error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.lead-msg.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }
.lead-msg.info { background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-600); }

.lead-otp-input {
  text-align: center; letter-spacing: 0.5em;
  font-size: 20px; font-weight: 900; color: var(--brand-600);
}
.lead-resend {
  display: block; margin: 8px auto 0;
  background: none; border: none;
  font-size: 11px; font-weight: 800; color: var(--brand-600);
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.08em;
}
.lead-resend:hover { color: var(--brand-700); text-decoration: underline; }

.lead-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 28px; color: white;
}

.lead-footer {
  text-align: center; padding: 0 28px 20px;
  font-size: 10px; color: var(--text-faint); font-weight: 600;
}

.lead-step { display: none; }
.lead-step.active { display: block; }

@media (max-width: 480px) {
  .lead-modal { max-width: 100%; }
  .lead-name-row { grid-template-columns: 1fr; }
  .lead-form { padding: 20px 20px 24px; }
  .lead-modal-header { padding: 24px 20px 0; }
  .lead-tabs { margin: 16px 20px 0; }
}

