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

:root {
  --bg-primary: #030712;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --cyan: #22d3ee;
  --cyan-dark: #06b6d4;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --green: #22c55e;
  --yellow: #fbbf24;
  --red: #ef4444;
  --gradient-main: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(34, 211, 238, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 18px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--bg-primary);
}

.logo span {
  font-weight: 400;
}

.logo strong {
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.header-buttons {
  display: flex;
  gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.btn-glow {
  background: var(--gradient-main);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--gradient-main);
  color: var(--bg-primary);
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.35), 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.5), 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-hero.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn-hero.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(34, 211, 238, 0.15);
  top: -200px;
  left: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.12);
  top: 50%;
  right: -150px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.1);
  bottom: -100px;
  left: 30%;
  animation: float-slow 22s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 32px;
}

.hero-line-1 {
  display: block;
  color: var(--text-primary);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-highlight {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 50%, #ff6b6b 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3s ease-in-out infinite;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 8px 0 12px;
}

@keyframes shimmer-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 4px;
  height: 28px;
  background: linear-gradient(90deg, rgba(255, 71, 87, 0.2) 0%, rgba(255, 107, 107, 0.3) 50%, rgba(255, 71, 87, 0.2) 100%);
  border-radius: 6px;
  z-index: -1;
}

.hero-line-2 {
  display: block;
  font-size: 48px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-desc strong {
  color: var(--text-primary);
}

.text-cyan {
  color: var(--cyan);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-sub {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero Text */
.hero-text {
  position: relative;
  z-index: 10;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.main-card {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  padding: 24px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.card-glow {
  position: absolute;
  inset: -1px;
  background: var(--gradient-glow);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.main-card:hover .card-glow {
  opacity: 1;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 15px)); }
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ===== NEW ENHANCED HERO CARD ===== */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.ai-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-badge svg {
  width: 14px;
  height: 14px;
}

.scanning-text {
  background: linear-gradient(90deg, var(--text-secondary), var(--cyan), var(--text-secondary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.card-product-enhanced {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-scan-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(70px); opacity: 0.5; }
}

.product-img-enhanced {
  width: 56px;
  height: 56px;
  background: rgba(34, 211, 238, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-img-enhanced svg {
  width: 32px;
  height: 32px;
  stroke: var(--cyan);
}

.product-info-enhanced strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sku-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

/* Price Discovery Section */
.price-discovery {
  margin-bottom: 16px;
}

.discovery-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.discovery-row:last-child {
  border-bottom: none;
}

.discovery-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.discovery-label svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

.discovery-value {
  font-size: 16px;
  font-weight: 700;
}

.discovery-value.yours {
  color: var(--cyan);
}

.discovery-value.market {
  color: var(--text-primary);
}

.discovery-row.highlighted {
  background: rgba(34, 211, 238, 0.05);
  margin: 0 -20px;
  padding: 12px 20px;
  border-radius: 8px;
  border-bottom: none;
}

.discovery-row.highlighted .discovery-label svg {
  stroke: var(--cyan);
}

.discovery-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.3), transparent);
  margin: 8px 0;
}

.discovery-row.result {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  margin: 8px -20px 0;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.discovery-row.result .discovery-label {
  color: var(--red);
}

.discovery-row.result .discovery-label svg {
  stroke: var(--red);
}

.discovery-value.loss {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.loss-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
}

.loss-unit {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Urgent Alert */
.urgent-alert {
  position: relative;
  padding: 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.alert-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 197, 94, 0.1);
  animation: alert-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes alert-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.alert-content {
  position: relative;
  z-index: 1;
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.alert-header svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
}

.alert-header strong {
  color: var(--green);
  font-size: 14px;
}

.alert-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.recommended-price {
  color: var(--cyan);
  font-weight: 700;
}

.extra-profit {
  color: var(--green);
  font-weight: 700;
}

/* Action Hint */
.card-action-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Enhanced Stat Cards */
.stat-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 60%);
  pointer-events: none;
}

.stat-icon-new {
  width: 40px;
  height: 40px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.stat-icon-new svg {
  width: 20px;
  height: 20px;
  stroke: var(--cyan);
}

.stat-value-new {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-new {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating Notification */
.floating-notification {
  position: absolute;
  bottom: -60px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px;
  animation: float-notif 4s ease-in-out infinite, fade-in 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

@keyframes fade-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.notif-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.notif-content {
  font-size: 12px;
  line-height: 1.4;
}

.notif-content strong {
  display: block;
  font-size: 13px;
}

.notif-time {
  color: var(--green);
  font-size: 11px;
}

/* Legacy styles below */
.card-badge {
  background: var(--gradient-main);
  color: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.card-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 16px;
}

.product-img {
  font-size: 32px;
}

.product-info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.product-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.price-comparison {
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.alert {
  background: rgba(239, 68, 68, 0.1);
  margin: 8px -14px 0;
  padding: 12px 14px;
  border-radius: 10px;
  border-bottom: none;
}

.price-you {
  color: var(--cyan);
  font-weight: 700;
}

.price-market {
  font-weight: 600;
}

.price-loss {
  color: var(--red);
  font-weight: 700;
}

.card-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 12px;
}

.alert-icon {
  font-size: 20px;
}

.card-alert strong {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  margin-bottom: 2px;
}

.card-alert span {
  font-size: 12px;
  color: var(--text-muted);
}

.stat-card {
  padding: 16px 20px;
  animation: float-stat 5s ease-in-out infinite;
  width: 140px;
}

.stat-1 {
  top: -30px;
  right: -100px;
  animation-delay: -1s;
  z-index: 3;
}

.stat-2 {
  top: 50px;
  left: -160px;
  animation-delay: -3s;
  z-index: 1;
}

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

/* Responsive hero visual */
@media (max-width: 1100px) {
  .stat-1 {
    top: -20px;
    right: -40px;
  }
  .stat-2 {
    top: 30px;
    left: -80px;
  }
  .floating-notification {
    bottom: -50px;
    left: 10px;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
}

.stat-card .stat-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--cyan);
}

.stat-card .stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero Logos */
.hero-logos {
  max-width: 1200px;
  margin: 80px auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.logos-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 700;
}

.logo-item img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.ml-logo {
  color: #ffe600;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.shopee-logo {
  color: #ee4d2d;
  font-size: 20px;
  font-weight: 800;
}

.amazon-logo img {
  height: 28px;
}

.magalu-logo {
  color: #0086ff;
  font-size: 20px;
  font-weight: 800;
}

/* ===== SECTION COMMON ===== */
.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.section-tag.danger {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.2);
}

.section-tag.success {
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.2);
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
}

.text-danger {
  color: var(--red);
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-block {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.stat-block:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-block.featured {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.15);
}

.stat-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(239, 68, 68, 0.05), transparent 60%);
  pointer-events: none;
}

.stat-block.featured .stat-bg {
  background: radial-gradient(circle at top center, rgba(251, 191, 36, 0.08), transparent 60%);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.stat-number.danger { color: var(--red); }
.stat-number.warning { color: var(--yellow); }
.stat-number.info { color: var(--cyan); }

.stat-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.stat-text strong {
  color: var(--text-primary);
}

.stat-source {
  font-size: 12px;
  color: var(--text-muted);
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border-left: 4px solid var(--cyan);
  position: relative;
}

.quote-marks {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(34, 211, 238, 0.2);
  line-height: 1;
}

.quote-block blockquote {
  font-size: 22px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
}

.quote-block cite {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== SOLUTION SECTION ===== */
.solution {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.2);
}

.feature-card.large {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.05), rgba(59, 130, 246, 0.03));
  border-color: rgba(34, 211, 238, 0.15);
}

.feature-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent 60%);
  pointer-events: none;
}

.feature-tag {
  display: inline-block;
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* New comparison card design */
.feature-large-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.feature-large-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-large-text p {
  font-size: 16px;
  line-height: 1.7;
}

.icon-zap {
  width: 14px;
  height: 14px;
  stroke: var(--cyan);
  vertical-align: middle;
  margin-right: 4px;
}

.feature-visual-new {
  position: relative;
}

.comparison-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-icon {
  width: 32px;
  height: 32px;
  stroke: var(--cyan);
  padding: 6px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 8px;
}

.comparison-product span {
  font-weight: 600;
  font-size: 15px;
}

.comparison-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.comparison-prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.price-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.price-item.price-you {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.05));
  border-color: rgba(34, 211, 238, 0.3);
  transform: scale(1.05);
}

.price-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.price-badge {
  font-size: 10px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-value {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.price-min .price-value { color: var(--green); }
.price-you .price-value { color: var(--cyan); }
.price-avg .price-value { color: var(--yellow); }
.price-max .price-value { color: var(--red); }

.price-seller {
  font-size: 11px;
  color: var(--text-muted);
}

.price-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
}

.price-status svg {
  width: 12px;
  height: 12px;
}

.price-status.good {
  color: var(--green);
}

.price-status.good svg {
  stroke: var(--green);
}

.comparison-bar {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
}

.bar-track {
  position: relative;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  border-radius: 4px;
  margin-bottom: 8px;
}

.bar-range {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
}

.bar-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--cyan);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan), 0 0 40px rgba(34, 211, 238, 0.3);
  cursor: pointer;
  z-index: 2;
}

.marker-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.marker-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--cyan);
}

.bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .feature-large-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .comparison-prices {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-primary);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--bg-primary);
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.3);
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  top: 40px;
  left: calc(50% + 50px);
  width: calc(100% - 50px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(34, 211, 238, 0.1));
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  color: var(--text-secondary);
  font-size: 15px;
}

.cta-center {
  text-align: center;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.popular {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.08), rgba(59, 130, 246, 0.05));
  border-color: rgba(34, 211, 238, 0.25);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: var(--bg-primary);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.pricing-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.price-cents {
  font-size: 24px;
  font-weight: 700;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li.included {
  color: var(--text-secondary);
}

.pricing-features li.included.highlight {
  color: var(--cyan);
}

.pricing-features li.not-included {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-features .check {
  color: var(--cyan);
  font-weight: 700;
}

.pricing-features .x {
  color: var(--text-muted);
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-pricing:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-pricing.primary {
  background: var(--gradient-main);
  color: var(--bg-primary);
  border: none;
}

.btn-pricing.primary:hover {
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.pricing-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 20px;
}

.guarantee-icon {
  font-size: 48px;
}

.guarantee-text strong {
  display: block;
  color: #86efac;
  font-size: 18px;
  margin-bottom: 4px;
}

.guarantee-text p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial p strong {
  color: var(--cyan);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--gradient-main);
  box-shadow: 0 0 60px 20px rgba(34, 211, 238, 0.2);
}

.cta-card h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-card > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.cta-badges span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.close-modal {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.close-modal:hover {
  color: var(--text-primary);
}

.welcome-bonus {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 28px;
  color: #86efac;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--cyan);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-submit {
  background: var(--gradient-main);
  color: var(--bg-primary);
  border: none;
  border-radius: 14px;
  padding: 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px;
}

.form-submit:hover {
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
  transform: translateY(-2px);
}

.form-toggle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.form-toggle a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.form-toggle a:hover {
  text-decoration: underline;
}

.hint.error {
  color: var(--red);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-line-1 {
    font-size: 36px;
  }

  .hero-highlight {
    font-size: 56px;
  }

  .hero-highlight::after {
    height: 22px;
  }

  .hero-line-2 {
    font-size: 38px;
  }

  .hero-visual {
    display: none;
  }

  .hero-cta-group {
    align-items: center;
  }

  .stats-grid,
  .features-bento,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.large {
    grid-column: span 1;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 16px 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-line-1 {
    font-size: 28px;
  }

  .hero-highlight {
    font-size: 42px;
    margin: 4px 0 8px;
  }

  .hero-highlight::after {
    height: 16px;
    bottom: 2px;
  }

  .hero-line-2 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .hero-sub {
    flex-direction: column;
    gap: 8px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .cta-badges {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== LUCIDE ICONS ===== */
.icon-sm {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  stroke-width: 3;
  vertical-align: middle;
  margin-right: 4px;
}

.icon-product {
  width: 48px;
  height: 48px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.icon-alert {
  width: 20px;
  height: 20px;
  stroke: var(--yellow);
  stroke-width: 2;
}

.icon-stat {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  stroke-width: 2;
}

.icon-feature {
  width: 32px;
  height: 32px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.icon-check {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  stroke-width: 3;
  vertical-align: middle;
}

.icon-x {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  stroke-width: 3;
  vertical-align: middle;
}

.icon-guarantee {
  width: 40px;
  height: 40px;
  stroke: var(--green);
  stroke-width: 1.5;
}

.icon-cta-check {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  stroke-width: 3;
  vertical-align: middle;
  margin-right: 4px;
}

.icon-gift {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
  stroke-width: 2;
  vertical-align: middle;
  margin-right: 4px;
}

/* Icon containers adjustments */
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 72px;
  height: 72px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO URGENCY ===== */
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 24px;
  font-size: 14px;
  color: #fca5a5;
  animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
  0%, 100% { border-color: rgba(239, 68, 68, 0.2); }
  50% { border-color: rgba(239, 68, 68, 0.5); }
}

.urgency-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.urgency-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  animation: clock-pulse 1s ease-in-out infinite;
}

@keyframes clock-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-urgency strong {
  color: var(--red);
}

/* ===== HERO HIGHLIGHT BOX ===== */
.hero-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.hero-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-text strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.highlight-text span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-highlight-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ===== SPY SECTION ===== */
.spy-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(34, 211, 238, 0.03) 50%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.spy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08), transparent 70%);
  pointer-events: none;
}

.section-tag.hot {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(251, 146, 60, 0.15));
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.3);
  animation: hot-pulse 2s ease-in-out infinite;
}

@keyframes hot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.3); }
  50% { box-shadow: 0 0 20px 5px rgba(251, 146, 60, 0.2); }
}

.spy-demo {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.spy-demo-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.6);
}

.spy-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.search-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
}

.search-text {
  flex: 1;
  color: var(--text-secondary);
  font-size: 14px;
}

.search-btn {
  background: var(--gradient-main);
  color: var(--bg-primary);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.spy-results {
  margin-bottom: 20px;
}

.spy-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.results-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
}

.results-time {
  font-size: 12px;
  color: var(--text-muted);
}

.spy-competitor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.spy-competitor:hover {
  background: rgba(255, 255, 255, 0.05);
}

.spy-competitor.highlighted {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.05));
  border-color: rgba(34, 211, 238, 0.25);
}

.competitor-rank {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.competitor-rank.you {
  background: var(--gradient-main);
  color: var(--bg-primary);
}

.competitor-info {
  flex: 1;
}

.competitor-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.competitor-rating,
.competitor-status {
  font-size: 12px;
  color: var(--text-muted);
}

.competitor-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.competitor-price.cheapest {
  color: var(--green);
}

.competitor-price.yours {
  color: var(--cyan);
}

.spy-more {
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.spy-more:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
}

.spy-insight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 14px;
  padding: 16px;
}

.insight-icon {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insight-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
}

.insight-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.insight-text strong {
  color: var(--purple);
}

.spy-benefits {
  position: relative;
}

.spy-benefits h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
}

.spy-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
}

.benefit-text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.spy-benefits .btn-hero {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ===== PROBLEM COMPARISON ===== */
.problem-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 60px 0;
}

.comparison-col {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-col.bad {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.05), transparent);
}

.comparison-col.good {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.05), transparent);
}

.comparison-col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.comparison-col.bad h4 {
  color: #fca5a5;
}

.comparison-col.good h4 {
  color: #86efac;
}

.comparison-col h4 svg {
  width: 22px;
  height: 22px;
}

.comparison-col.bad h4 svg {
  stroke: var(--red);
}

.comparison-col.good h4 svg {
  stroke: var(--green);
}

.comparison-col ul {
  list-style: none;
}

.comparison-col ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-col ul li:last-child {
  border-bottom: none;
}

.comparison-col.bad ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.comparison-col.good ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== FEATURE HOT TAG ===== */
.feature-hot {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--red), #f97316);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: feature-hot-pulse 2s ease-in-out infinite;
}

@keyframes feature-hot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(239, 68, 68, 0.2); }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 60px 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.proof-stat {
  position: relative;
}

.proof-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-stat:last-child::after {
  display: none;
}

.proof-number {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== TESTIMONIAL FEATURED ===== */
.testimonial.featured {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.08), rgba(59, 130, 246, 0.04));
  border-color: rgba(34, 211, 238, 0.15);
}

.testimonial-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  margin-bottom: 20px;
}

.result-label {
  font-size: 13px;
  color: var(--text-muted);
}

.result-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 100px 0;
  background: var(--bg-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: rgba(34, 211, 238, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== CTA URGENCY BADGE ===== */
.cta-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: #fca5a5;
  margin-bottom: 24px;
  animation: urgency-pulse 3s ease-in-out infinite;
}

.cta-urgency-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
}

/* ===== PRICE DAILY ===== */
.price-daily {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -20px;
  margin-bottom: 24px;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1024px) {
  .spy-demo {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-comparison {
    grid-template-columns: 1fr;
  }

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .proof-stat::after {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .hero-urgency {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .spy-demo-card {
    padding: 20px;
  }

  .spy-competitor {
    padding: 12px;
    gap: 10px;
  }

  .competitor-price {
    font-size: 16px;
  }
}
