/**
 * Hero Module CSS
 * Styles specific to hero section with multiple layouts
 */

/* ============================================
   SECTION WRAPPER
   Unified background for multiple sections (hero + wizard, etc.)
   ============================================ */

.lp-content .lp-section-wrapper {
  position: relative;
  background: var(--lp-bg);
  overflow: hidden;
}

/* Effects container for wrapper - covers entire wrapper area */
.lp-content .lp-section-wrapper .wrapper-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* When using wrapper, hero doesn't need its own background */
.lp-content .lp-section-wrapper .hero {
  background: transparent;
  overflow: visible;
}

/* Hide hero's own effects when inside wrapper (wrapper handles effects) */
.lp-content .lp-section-wrapper .hero .lightning-effects {
  display: none;
}

/* Wizard section inside wrapper */
.lp-content .lp-section-wrapper .lp-wizard-section {
  background: transparent;
  position: relative;
  z-index: 10;
}

/* Wizard floating card keeps its own background */
.lp-content .lp-section-wrapper .wizard-floating-card {
  background: var(--lp-border-light);
}

/* ============================================
   WRAPPER EFFECTS - Inherit hero effect styles
   ============================================ */

/* All effect elements inside wrapper-effects inherit hero effect styles */
.lp-content .lp-section-wrapper .wrapper-effects .lightning-glow,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-glow-2,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-1,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-2,
.lp-content .lp-section-wrapper .wrapper-effects .electric-line,
.lp-content .lp-section-wrapper .wrapper-effects .em-pulse,
.lp-content .lp-section-wrapper .wrapper-effects .power-spark,
.lp-content .lp-section-wrapper .wrapper-effects .electric-grid,
.lp-content .lp-section-wrapper .wrapper-effects .signal-wave,
.lp-content .lp-section-wrapper .wrapper-effects .cloud,
.lp-content .lp-section-wrapper .wrapper-effects .earth-signal-container,
.lp-content .lp-section-wrapper .wrapper-effects .gradient-shift-bg,
.lp-content .lp-section-wrapper .wrapper-effects .radiating-signal {
  /* Inherits positioning and animations from .hero equivalents below */
}

/* ============================================
   HERO SECTION - BASE
   ============================================ */

.lp-content .hero {  
  padding: 5rem 0 15rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  /*background: var(--lp-gradient-hero);*/
  /*background: radial-gradient(circle,rgba(220, 83, 42, 1) 0%, rgba(207, 28, 60, 1) 40%, rgba(207, 28, 60, 1) 100%);*/
  background: var(--lp-bg);
}

/*
.lp-content .hero::before {
  content: url(antennas-hero-bg-1.png?ver4);
  position: absolute;
  width: 900px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
*/

.lp-content .hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lp-content .hero .subtitle {
  font-size: 1.5rem;
  color: var(--lp-brand);
  margin-bottom: 1rem;
  font-weight: 600;
}

.lp-content .hero .description {
  font-size: 1.125rem;
  color: var(--lp-text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lp-content .hero .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================
   LIGHTNING EFFECTS CONTAINER
   ============================================ */

.lp-content .hero .lightning-effects,
.lp-content .lp-section-wrapper .wrapper-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Lightning Bolt 1 - Left Side */
.lp-content .hero .lightning-bolt-1,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-1 {
  position: absolute;
  left: 15%;
  top: -50px;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 100, 1) 20%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 100, 1) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 
    0 0 10px rgba(255, 255, 100, 0.8),
    0 0 20px rgba(255, 255, 100, 0.6),
    0 0 30px rgba(255, 255, 100, 0.4);
  animation: lightning-strike-1 5s ease-in-out infinite;
  transform-origin: top center;
}

.lp-content .hero .lightning-bolt-1::before,
.lp-content .hero .lightning-bolt-1::after,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-1::before,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-1::after {
  content: '';
  position: absolute;
  width: 3px;
  background: inherit;
  box-shadow: inherit;
}

.lp-content .hero .lightning-bolt-1::before,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-1::before {
  height: 80px;
  top: 100%;
  left: 20px;
  transform: rotate(25deg);
  transform-origin: top left;
}

.lp-content .hero .lightning-bolt-1::after,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-1::after {
  height: 100px;
  top: 180px;
  left: 15px;
  transform: rotate(-20deg);
  transform-origin: top left;
}

/* Lightning Bolt 2 - Right Side */
.lp-content .hero .lightning-bolt-2,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-2 {
  position: absolute;
  right: 15%;
  top: -50px;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0) 0%,
    rgba(100, 200, 255, 1) 20%,
    rgba(255, 255, 255, 1) 50%,
    rgba(100, 200, 255, 1) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 
    0 0 10px rgba(100, 200, 255, 0.8),
    0 0 20px rgba(100, 200, 255, 0.6),
    0 0 30px rgba(100, 200, 255, 0.4);
  animation: lightning-strike-2 5s ease-in-out 2.5s infinite;
  transform-origin: top center;
}

.lp-content .hero .lightning-bolt-2::before,
.lp-content .hero .lightning-bolt-2::after,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-2::before,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-2::after {
  content: '';
  position: absolute;
  width: 3px;
  background: inherit;
  box-shadow: inherit;
}

.lp-content .hero .lightning-bolt-2::before,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-2::before {
  height: 90px;
  top: 100%;
  right: 25px;
  transform: rotate(-30deg);
  transform-origin: top right;
}

.lp-content .hero .lightning-bolt-2::after,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-bolt-2::after {
  height: 110px;
  top: 190px;
  right: 20px;
  transform: rotate(25deg);
  transform-origin: top right;
}

/* Lightning Flash/Glow Effects */
.lp-content .hero .lightning-glow,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, 
    rgba(255, 255, 100, 0.15) 0%, 
    transparent 40%
  );
  animation: lightning-pulse 5s ease-in-out infinite;
  opacity: 0;
}

.lp-content .hero .lightning-glow-2,
.lp-content .lp-section-wrapper .wrapper-effects .lightning-glow-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 40%, 
    rgba(100, 200, 255, 0.15) 0%, 
    transparent 40%
  );
  animation: lightning-pulse 5s ease-in-out 2.5s infinite;
  opacity: 0;
}

/* Electric Accent Lines */
.lp-content .hero .electric-line,
.lp-content .lp-section-wrapper .wrapper-effects .electric-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, 
    transparent,
    rgba(255, 255, 100, 0.7),
    transparent
  );
  box-shadow: 0 0 10px rgba(255, 255, 100, 0.8);
  animation: electric-slide 3s linear infinite;
}

.lp-content .hero .electric-line-1,
.lp-content .lp-section-wrapper .wrapper-effects .electric-line-1 {
  top: 25%;
  left: -100%;
  width: 200px;
  animation-delay: 0s;
}

.lp-content .hero .electric-line-2,
.lp-content .lp-section-wrapper .wrapper-effects .electric-line-2 {
  top: 60%;
  right: -100%;
  width: 150px;
  animation: electric-slide-reverse 3.5s linear infinite;
  animation-delay: 1.5s;
  background: linear-gradient(to right, 
    transparent,
    rgba(100, 200, 255, 0.7),
    transparent
  );
}

.lp-content .hero .electric-line-3,
.lp-content .lp-section-wrapper .wrapper-effects .electric-line-3 {
  top: 75%;
  left: -100%;
  width: 180px;
  animation-delay: 2s;
}

/* ============================================
   ADDITIONAL POWER EFFECTS
   ============================================ */

/* Electromagnetic Pulse Waves */
.lp-content .hero .em-pulse,
.lp-content .lp-section-wrapper .wrapper-effects .em-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 100, 0.6);
  animation: em-pulse-wave 4s ease-out infinite;
}

.lp-content .hero .em-pulse-2,
.lp-content .lp-section-wrapper .wrapper-effects .em-pulse-2 {
  animation-delay: 2s;
}

/* Power Sparks */
.lp-content .hero .power-spark,
.lp-content .lp-section-wrapper .wrapper-effects .power-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 100, 0.8);
  animation: spark-float 3s ease-in-out infinite;
}

.lp-content .hero .power-spark-1,
.lp-content .lp-section-wrapper .wrapper-effects .power-spark-1 {
  top: 20%;
  left: 25%;
  animation-delay: 0s;
}

.lp-content .hero .power-spark-2,
.lp-content .lp-section-wrapper .wrapper-effects .power-spark-2 {
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.lp-content .hero .power-spark-3,
.lp-content .lp-section-wrapper .wrapper-effects .power-spark-3 {
  top: 70%;
  left: 30%;
  animation-delay: 2s;
}

.lp-content .hero .power-spark-4,
.lp-content .lp-section-wrapper .wrapper-effects .power-spark-4 {
  top: 65%;
  right: 25%;
  animation-delay: 1.5s;
}

/* Electric Grid Pattern */
.lp-content .hero .electric-grid,
.lp-content .lp-section-wrapper .wrapper-effects .electric-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 100, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 100, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-pulse 3s ease-in-out infinite;
}

/* Signal Transmission Waves */
.lp-content .hero .signal-wave,
.lp-content .lp-section-wrapper .wrapper-effects .signal-wave {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: signal-transmit 3s ease-out infinite;
}

.lp-content .hero .signal-wave-2,
.lp-content .lp-section-wrapper .wrapper-effects .signal-wave-2 {
  animation-delay: 1s;
}

.lp-content .hero .signal-wave-3,
.lp-content .lp-section-wrapper .wrapper-effects .signal-wave-3 {
  animation-delay: 2s;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes lightning-strike-1 {
  0%, 88%, 100% {
    height: 0;
    opacity: 0;
  }
  90% {
    height: 150px;
    opacity: 1;
  }
  92% {
    height: 150px;
    opacity: 0;
  }
  94% {
    height: 150px;
    opacity: 1;
  }
  96% {
    height: 150px;
    opacity: 0;
  }
}

@keyframes lightning-strike-2 {
  0%, 88%, 100% {
    height: 0;
    opacity: 0;
  }
  90% {
    height: 160px;
    opacity: 1;
  }
  92% {
    height: 160px;
    opacity: 0;
  }
  94% {
    height: 160px;
    opacity: 1;
  }
}

@keyframes lightning-pulse {
  0%, 86%, 100% {
    opacity: 0;
  }
  90% {
    opacity: 0.5;
  }
  92% {
    opacity: 0;
  }
  94% {
    opacity: 0.4;
  }
  96% {
    opacity: 0;
  }
}

@keyframes electric-slide {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes electric-slide-reverse {
  0% {
    right: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    right: 100%;
    opacity: 0;
  }
}

@keyframes em-pulse-wave {
  0% {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    opacity: 1;
  }
  100% {
    width: 800px;
    height: 800px;
    margin: -400px 0 0 -400px;
    opacity: 0;
  }
}

@keyframes spark-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-60px) scale(0.5);
    opacity: 0;
  }
}

@keyframes grid-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes signal-transmit {
  0% {
    width: 100px;
    height: 100px;
    margin-left: -50px;
    opacity: 0.6;
  }
  100% {
    width: 600px;
    height: 600px;
    margin-left: -300px;
    opacity: 0;
  }
}

/* ============================================
   ALTERNATIVE EFFECTS FOR BLACK BACKGROUND
   ============================================ */

/* Cloud Effects - Soft, visible clouds for black background */
.lp-content .hero .cloud,
.lp-content .lp-section-wrapper .wrapper-effects .cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  filter: blur(40px);
  opacity: 0.6;
  animation: cloud-float 25s ease-in-out infinite;
}

.lp-content .hero .cloud::before,
.lp-content .hero .cloud::after,
.lp-content .lp-section-wrapper .wrapper-effects .cloud::before,
.lp-content .lp-section-wrapper .wrapper-effects .cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  filter: blur(30px);
}

.lp-content .hero .cloud-1,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-1 {
  width: 300px;
  height: 120px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.lp-content .hero .cloud-1::before,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-1::before {
  width: 150px;
  height: 150px;
  top: -60px;
  left: 40px;
}

.lp-content .hero .cloud-1::after,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-1::after {
  width: 180px;
  height: 180px;
  top: -70px;
  right: 30px;
}

.lp-content .hero .cloud-2,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-2 {
  width: 280px;
  height: 110px;
  top: 45%;
  right: 10%;
  animation-delay: -8s;
}

.lp-content .hero .cloud-2::before,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-2::before {
  width: 140px;
  height: 140px;
  top: -55px;
  left: 30px;
}

.lp-content .hero .cloud-2::after,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-2::after {
  width: 160px;
  height: 160px;
  top: -65px;
  right: 25px;
}

.lp-content .hero .cloud-3,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-3 {
  width: 250px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: -16s;
}

.lp-content .hero .cloud-3::before,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-3::before {
  width: 130px;
  height: 130px;
  top: -50px;
  left: 25px;
}

.lp-content .hero .cloud-3::after,
.lp-content .lp-section-wrapper .wrapper-effects .cloud-3::after {
  width: 150px;
  height: 150px;
  top: -60px;
  right: 20px;
}

@keyframes cloud-float {
  0%, 100% {
    transform: translateX(0) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(40px) translateY(-30px);
    opacity: 0.7;
  }
}

/* Earth with Antenna Signals - Subtle pulsing globe */
.lp-content .hero .earth-signal-container,
.lp-content .lp-section-wrapper .wrapper-effects .earth-signal-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
}

.lp-content .hero .earth-globe,
.lp-content .lp-section-wrapper .wrapper-effects .earth-globe {
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(100, 150, 200, 0.25) 0%,
    rgba(50, 100, 150, 0.18) 40%,
    rgba(30, 60, 90, 0.12) 100%
  );
  border: 2px solid rgba(100, 150, 200, 0.3);
  box-shadow: 
    inset 0 0 40px rgba(100, 150, 200, 0.15),
    0 0 30px rgba(100, 150, 200, 0.2);
  animation: earth-pulse 4s ease-in-out infinite;
}

.lp-content .hero .earth-globe::before,
.lp-content .lp-section-wrapper .wrapper-effects .earth-globe::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 25% 25%,
    rgba(80, 120, 160, 0.15) 0%,
    transparent 60%
  );
}

@keyframes earth-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Earth Radiating Rings - Expand from earth center */
.lp-content .hero .earth-ring,
.lp-content .lp-section-wrapper .wrapper-effects .earth-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(100, 200, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: earth-ring-expand 4s ease-out infinite;
}

.lp-content .hero .earth-ring-1,
.lp-content .lp-section-wrapper .wrapper-effects .earth-ring-1 {
  animation-delay: 0s;
}

.lp-content .hero .earth-ring-2,
.lp-content .lp-section-wrapper .wrapper-effects .earth-ring-2 {
  animation-delay: 1.3s;
}

.lp-content .hero .earth-ring-3,
.lp-content .lp-section-wrapper .wrapper-effects .earth-ring-3 {
  animation-delay: 2.6s;
}

@keyframes earth-ring-expand {
  0% {
    width: 220px;
    height: 220px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Gradient Shift Effect - Brighter colors visible on black background */
.lp-content .hero .gradient-shift-bg,
.lp-content .lp-section-wrapper .wrapper-effects .gradient-shift-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(207, 28, 60, 0.25) 0%,
    rgba(50, 100, 150, 0.3) 25%,
    rgba(100, 150, 200, 0.25) 50%,
    rgba(50, 100, 150, 0.3) 75%,
    rgba(207, 28, 60, 0.25) 100%
  );
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  opacity: 0.8;
}

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

/* Radiating Signals - Concentric circles expanding (no center dot) */
/* Aligned with earth-signal-container origin - same center point as earth globe */
/* Earth container: bottom: 10%, height: 400px, so center is at bottom: 10% + 200px */
/* Earth globe: 220px tall, centered with transform: translate(-50%, -50%), so center is exactly at container center */
.lp-content .hero .radiating-signal,
.lp-content .lp-section-wrapper .wrapper-effects .radiating-signal {
  position: absolute;
  bottom: calc(10% + 200px); /* Match earth container center */
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%); /* Center exactly like earth globe */
  border-radius: 50%;
  border: 2px solid rgba(100, 200, 255, 0.3);
  animation: signal-radiate 4s ease-out infinite;
}

.lp-content .hero .radiating-signal-1,
.lp-content .lp-section-wrapper .wrapper-effects .radiating-signal-1 {
  animation-delay: 0s;
}

.lp-content .hero .radiating-signal-2,
.lp-content .lp-section-wrapper .wrapper-effects .radiating-signal-2 {
  animation-delay: 1.3s;
}

.lp-content .hero .radiating-signal-3,
.lp-content .lp-section-wrapper .wrapper-effects .radiating-signal-3 {
  animation-delay: 2.6s;
}

@keyframes signal-radiate {
  0% {
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    opacity: 0.8;
  }
  100% {
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
}

/* ============================================
   EFFECT VARIATIONS - Easy On/Off
   ============================================ */

/* To disable specific effects, add these classes to your hero element:
   .no-lightning - Disables lightning bolts
   .no-sparks - Disables power sparks
   .no-grid - Disables electric grid
   .no-waves - Disables signal waves
   .no-effects - Disables all effects
*/

.lp-content .hero.no-lightning .lightning-bolt-1,
.lp-content .hero.no-lightning .lightning-bolt-2,
.lp-content .hero.no-lightning .lightning-glow,
.lp-content .hero.no-lightning .lightning-glow-2,
.lp-content .hero.no-effects .lightning-bolt-1,
.lp-content .hero.no-effects .lightning-bolt-2,
.lp-content .hero.no-effects .lightning-glow,
.lp-content .hero.no-effects .lightning-glow-2 {
  display: none;
}

.lp-content .hero.no-sparks .power-spark,
.lp-content .hero.no-effects .power-spark {
  display: none;
}

.lp-content .hero.no-grid .electric-grid,
.lp-content .hero.no-effects .electric-grid {
  display: none;
}

.lp-content .hero.no-waves .signal-wave,
.lp-content .hero.no-effects .signal-wave {
  display: none;
}

.lp-content .hero.no-electric-lines .electric-line,
.lp-content .hero.no-effects .electric-line {
  display: none;
}

.lp-content .hero.no-clouds .cloud,
.lp-content .hero.no-effects .cloud {
  display: none;
}

.lp-content .hero.no-earth .earth-signal-container,
.lp-content .hero.no-effects .earth-signal-container {
  display: none;
}

.lp-content .hero.no-gradient .gradient-shift-bg,
.lp-content .hero.no-effects .gradient-shift-bg {
  display: none;
}

.lp-content .hero.no-radiating .radiating-signal,
.lp-content .hero.no-effects .radiating-signal {
  display: none;
}

/* ============================================
   HERO LAYOUT: MINIMAL
   ============================================ */

.lp-content .hero-layout-minimal {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.lp-content .hero-layout-minimal h1 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lp-content .hero-layout-minimal .description {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animated ripple effect */
.lp-content .hero-layout-minimal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 30%,
    rgba(207, 28, 60, 0.04) 30%,
    rgba(207, 28, 60, 0.04) 32%,
    transparent 32%,
    transparent 45%,
    rgba(207, 28, 60, 0.03) 45%,
    rgba(207, 28, 60, 0.03) 47%,
    transparent 47%,
    transparent 60%,
    rgba(207, 28, 60, 0.02) 60%,
    rgba(207, 28, 60, 0.02) 62%,
    transparent 62%
  );
  animation: ripple 8s linear infinite;
  pointer-events: none;
}

.lp-content .hero-layout-minimal::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  margin: -300px 0 0 -300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 35%,
    rgba(207, 28, 60, 0.03) 35%,
    rgba(207, 28, 60, 0.03) 37%,
    transparent 37%,
    transparent 52%,
    rgba(207, 28, 60, 0.02) 52%,
    rgba(207, 28, 60, 0.02) 54%,
    transparent 54%
  );
  animation: ripple 8s linear infinite;
  animation-delay: -4s;
  pointer-events: none;
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ============================================
   HERO LAYOUT: STATS (Trust Signals)
   ============================================ */

.lp-content .hero-layout-stats {
  padding: 4rem 0 3rem;
}

.lp-content .hero-trust-signals {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.lp-content .trust-signal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--lp-card);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  min-width: 140px;
}

.lp-content .trust-signal-item .signal-icon {
  font-size: 2rem;
  line-height: 1;
}

.lp-content .trust-signal-item .signal-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-text-dark);
  line-height: 1;
}

.lp-content .trust-signal-item .signal-label {
  font-size: 0.875rem;
  color: var(--lp-text-muted);
  text-align: center;
}

/* ============================================
   HERO LAYOUT: FEATURED (Product Showcase)
   ============================================ */

.lp-content .hero-layout-featured {
  padding: 4rem 0 3rem;
}

.lp-content .hero-featured-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-content .hero-featured-content {
  text-align: left;
}

.lp-content .hero-featured-content h1 {
  text-align: left;
  margin-bottom: 1rem;
}

.lp-content .hero-featured-content .description {
  text-align: left;
  margin-bottom: 1.5rem;
}

.lp-content .hero-featured-content .cta-buttons {
  justify-content: flex-start;
}

.lp-content .hero-featured-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.lp-content .featured-product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--lp-card);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  transition: all 0.3s ease;
}

.lp-content .featured-product-card:hover {
  border-color: var(--lp-brand);
  box-shadow: var(--lp-shadow-md);
  transform: translateX(8px);
}

.lp-content .featured-product-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--lp-radius-md);
  overflow: hidden;
  background: var(--lp-bg-section);
}

.lp-content .featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-content .featured-product-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--lp-text-dark);
}

.lp-content .featured-product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lp-brand);
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  /* Wrapper responsive adjustments */
  .lp-content .lp-hero-wizard-wrapper .lp-wizard-section {
    margin-top: -60px;
  }
  
  .lp-content .hero {
    padding: 4rem 0 3rem;
  }
  
  .lp-content .hero h1 {
    font-size: 2rem;
  }
  
  .lp-content .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .lp-content .hero .description {
    font-size: 1rem;
  }
  
  .lp-content .hero .cta-buttons {
    flex-direction: column;
  }
  
  .lp-content .hero-trust-signals {
    gap: 1.5rem;
  }
  
  .lp-content .trust-signal-item {
    min-width: 120px;
  }
  
  .lp-content .hero-featured-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .lp-content .hero-featured-content {
    text-align: center;
  }
  
  .lp-content .hero-featured-content h1,
  .lp-content .hero-featured-content .description {
    text-align: center;
  }
  
  .lp-content .hero-featured-content .cta-buttons {
    justify-content: center;
  }
  
  .lp-content .featured-product-card:hover {
    transform: translateY(-4px) translateX(0);
  }
  
  /* Reduce effect intensity on mobile for performance */
  .lp-content .hero .lightning-bolt-1,
  .lp-content .hero .lightning-bolt-2 {
    animation-duration: 6s;
  }
  
  .lp-content .hero .power-spark {
    display: none;
  }
  
  .lp-content .hero .electric-grid {
    opacity: 0.5;
  }
}
/* ============================================
   HERO SPECIFIC CLASS STYLES
   Added to match PHP class names
   ============================================ */

/* Hero Title */
.lp-content .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--lp-bg-light);
  line-height: 1.1;
  text-align: center;
}

/* Hero Description */
.lp-content .hero-description {
  font-size: 1.125rem;
  color: var(--lp-grey-light);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Hero CTA Container */
.lp-content .hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.lp-content .hero-cta .btn{
  background: transparent;
    color: var(--lp-text-light);
    border: 2px solid #FFF;
    box-shadow: none;
}

/* Trust Signals Container */
.lp-content .trust-signals {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Individual Trust Signal */
.lp-content .trust-signal {
  text-align: center;
  flex: 0 1 auto;
}

/* Trust Signal Icon */
.lp-content .trust-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Trust Signal Value */
.lp-content .trust-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-brand);
  margin-bottom: 0.25rem;
}

/* Trust Signal Label */
.lp-content .trust-label {
  font-size: 0.875rem;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Products Container */
.lp-content .hero-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Individual Hero Product Card */
.lp-content .hero-product {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lp-content .hero-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-brand);
}

.lp-content .hero-product img {
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius-md);
  margin-bottom: 1rem;
}

.lp-content .hero-product .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-brand);
}