/**
 * BeeReach Marketing — Premium Hero Enhancements
 * Advanced effects for the hero section
 */

/* Floating orbs for atmospheric effect */
.mkt-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: mkt-float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.mkt-hero__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 249, 71, 0.4) 0%, transparent 70%);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.mkt-hero__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
  bottom: 20%;
  right: 20%;
  animation-delay: -7s;
}

.mkt-hero__orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes mkt-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Enhanced badge with pulse */
.mkt-hero__badge {
  padding: 10px 24px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  border: 1px solid rgba(255, 249, 71, 0.25) !important;
  background: rgba(255, 249, 71, 0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 32px !important;
  box-shadow: 0 0 20px rgba(255, 249, 71, 0.15) !important;
}

.mkt-hero__badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mkt-brand);
  animation: mkt-pulse-dot 2s ease infinite;
}

/* Enhanced title with gradient */
.mkt-hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 24px !important;
}

.mkt-hero__title-line {
  display: block;
}

.mkt-hero__title-line--gradient {
  background: linear-gradient(135deg,
    #fff947 0%,
    #f59e0b 40%,
    #f97316 60%,
    #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 40px rgba(255, 249, 71, 0.3));
}

/* Enhanced subtitle */
.mkt-hero__subtitle {
  font-size: 1.25rem !important;
  max-width: 640px !important;
  margin: 0 auto 40px !important;
  font-weight: 400 !important;
}

/* Glowing CTA button */
.mkt-btn--glow {
  position: relative;
  box-shadow: 0 0 30px rgba(255, 249, 71, 0.3);
  transition: all 0.3s ease;
}

.mkt-btn--glow:hover {
  box-shadow: 0 0 50px rgba(255, 249, 71, 0.5), 0 0 80px rgba(255, 249, 71, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.mkt-btn--glow svg {
  transition: transform 0.3s ease;
}

.mkt-btn--glow:hover svg {
  transform: translateX(3px);
}

/* Enhanced trust section */
.mkt-hero__trust {
  gap: 48px !important;
  margin-bottom: 40px !important;
  padding: 32px 0 !important;
  border-top: 1px solid rgba(148, 163, 184, 0.1) !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1) !important;
}

.mkt-hero__stat-value {
  font-size: 2rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(135deg, #f1f5f9 0%, #fff947 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mkt-hero__stat-label {
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 600 !important;
  margin-top: 4px !important;
}

/* Social proof badges */
.mkt-hero__social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.8;
  margin-top: 24px;
}

.mkt-hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--mkt-text-secondary);
}

.mkt-hero__proof-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(255, 249, 71, 0.3));
}

/* Split-screen layout for hero */
.mkt-hero__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mkt-hero__content {
  max-width: 600px !important;
  text-align: left !important;
  padding: 0 !important;
}

.mkt-hero__badge {
  margin-bottom: 32px !important;
}

.mkt-hero__actions {
  justify-content: flex-start !important;
}

.mkt-hero__trust {
  justify-content: flex-start !important;
}

.mkt-hero__social-proof {
  justify-content: flex-start !important;
}

/* 3D iPhone container */
.mkt-hero__phone {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-phone-container {
  width: 100%;
  height: 100%;
  position: relative;
}

#hero-phone-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Mobile optimizations */
@media (max-width: 1200px) {
  .mkt-hero__layout {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 24px;
  }

  .mkt-hero__content {
    text-align: center !important;
    margin: 0 auto;
  }

  .mkt-hero__actions {
    justify-content: center !important;
  }

  .mkt-hero__trust {
    justify-content: center !important;
  }

  .mkt-hero__social-proof {
    justify-content: center !important;
  }

  .mkt-hero__phone {
    display: none;
  }
}

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

  .mkt-hero__title {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .mkt-hero__subtitle {
    font-size: 1.1rem !important;
  }

  .mkt-hero__trust {
    gap: 32px !important;
    padding: 24px 0 !important;
  }

  .mkt-hero__stat-value {
    font-size: 1.5rem !important;
  }

  .mkt-hero__social-proof {
    flex-direction: column;
    gap: 16px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .mkt-hero__orb {
    animation: none;
  }

  .mkt-hero__badge-pulse {
    animation: none;
  }

  .mkt-btn--glow:hover {
    transform: none;
  }
}
