/* ═══════════════════════════════════════════════════════════════════════════
   COMPACT HERO SECTION CSS
   Replaces hero-reimagined.css with tighter spacing
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   HERO BADGE
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #22d3ee;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 211, 238, 0); }
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #22d3ee;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO HEADLINE - Compact sizes
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.hero-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-plus {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-tagline-main {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}

.hero-tagline-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #94a3b8;
  line-height: 1.2;
}

.text-gradient-animated {
  background: linear-gradient(90deg, #22d3ee, #f59e0b, #22d3ee);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   VALUE PROPOSITION - Compact
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-value-prop {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 500px;
}

.hero-value-prop strong {
  color: #22d3ee;
  font-weight: 600;
}

.hero-value-prop .membership-link {
  color: #fbbf24;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.hero-value-prop .membership-link:hover {
  color: #f59e0b;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS + ACTIONS ROW
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-stats-actions {
  margin-bottom: 1.25rem;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.proof-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.proof-label {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.3), transparent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BUTTONS - Compact
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
  color: white;
}

.cta-button-primary .cta-icon {
  flex-shrink: 0;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  color: #22d3ee;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(34, 211, 238, 0.4);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: #22d3ee;
  color: #22d3ee;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO IMAGE - Adjusted for compact layout
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-single-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

.hero-static-image {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(34, 211, 238, 0.12);
  transition: all 0.4s ease;
}

.hero-static-image:hover {
  transform: scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 35px rgba(34, 211, 238, 0.2);
}

.hero-image-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, 
    rgba(34, 211, 238, 0.25), 
    rgba(255, 215, 0, 0.15), 
    rgba(34, 211, 238, 0.25)
  );
  border-radius: 16px;
  opacity: 0;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.4s ease;
}

.hero-single-image:hover .hero-image-glow {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE - Compact adjustments
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-brand-name {
    font-size: 2.5rem;
  }
  
  .hero-tagline-main,
  .hero-tagline-sub {
    font-size: 1.5rem;
  }
  
  .hero-single-image {
    max-width: 360px;
  }
  
  .hero-static-image {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-badge {
    margin-bottom: 0.75rem;
  }
  
  .badge-text {
    font-size: 0.7rem;
  }
  
  .hero-brand-name {
    font-size: 2.25rem;
  }
  
  .hero-tagline-main,
  .hero-tagline-sub {
    font-size: 1.25rem;
  }
  
  .hero-value-prop {
    font-size: 0.9rem;
  }
  
  .hero-social-proof {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    padding: 0.625rem 1rem;
  }
  
  .proof-number {
    font-size: 1.125rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
  }
  
  .hero-single-image {
    max-width: 280px;
  }
  
  .hero-static-image {
    max-height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-brand-name {
    font-size: 1.875rem;
  }
  
  .hero-tagline-main,
  .hero-tagline-sub {
    font-size: 1.125rem;
  }
  
  .hero-value-prop {
    font-size: 0.85rem;
  }
  
  .proof-divider {
    height: 24px;
  }
  
  .proof-number {
    font-size: 1rem;
  }
  
  .proof-label {
    font-size: 0.6rem;
  }
  
  .hero-single-image {
    max-width: 240px;
  }
  
  .hero-static-image {
    max-height: 200px;
  }
}
