/* Leads Extractor — Deep Midnight Style */
:root {
  --accent-primary: #ffcc00;
  --accent-glow: rgba(255, 204, 0, 0.3);
  --deep-midnight: #0f111a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --border-default: rgba(255, 255, 255, 0.08);
}

.enterprise-home.scraper-landing {
  background-color: var(--deep-midnight);
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Ambient Glows */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.glow-1 { top: -100px; left: -100px; background: radial-gradient(circle, #7c3aed, transparent); }
.glow-2 { top: 40%; right: -200px; background: radial-gradient(circle, #3b82f6, transparent); }
.glow-3 { bottom: -100px; left: 30%; background: radial-gradient(circle, #ffcc00, transparent); }

/* Hero Specifics */
.hero.scraper-hero {
  padding: 180px 0 100px;
  position: relative;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

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

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-default);
}

.hero-img-main {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.hero-img-main:hover {
  transform: scale(1.02);
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 204, 0, 0.1);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-primary);
}

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

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.step-card {
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.1);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  color: var(--deep-midnight);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 10px 20px var(--accent-glow);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 204, 0, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.premium {
  border: 1px solid var(--accent-primary);
  background: rgba(255, 204, 0, 0.02);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.1);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-primary);
  color: var(--deep-midnight);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
}

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

.amount {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
}

.period {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

.card-body {
  flex-grow: 1;
}

.card-body ul li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.card-body ul li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.card-footer {
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero.scraper-hero .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 40px;
  }
  
  .hero-visual {
    margin-top: 60px;
  }

  .pricing-card.premium {
    transform: scale(1);
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .pricing-card {
    padding: 30px;
  }
  
  .amount {
    font-size: 3rem;
  }
}
