/* ===== ICON ANIMATIONS ===== */
@keyframes float-bounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 232, 0.4); }
  50% { box-shadow: 0 0 24px rgba(0, 212, 232, 0.8); }
}

@keyframes spin-slow {
  0% { transform: rotateZ(0deg); }
  100% { transform: rotateZ(360deg); }
}

@keyframes bounce-in {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 15px rgba(0, 212, 232, 0.5);
  }
  50% { 
    box-shadow: 0 0 30px rgba(0, 212, 232, 0.9), inset 0 0 15px rgba(0, 212, 232, 0.4);
  }
}

/* Activate animations on scroll */
.benefit-item i {
  animation: bounce-in 0.6s ease-out forwards;
  animation-play-state: paused;
}

.benefit-item:hover i {
  animation: float-bounce 2s ease-in-out infinite, pulse-glow 2s ease-in-out infinite !important;
}

.trust-card i {
  animation: bounce-in 0.7s ease-out forwards;
}

.trust-card:hover i {
  animation: float-bounce 2s ease-in-out infinite, pulse-glow 2.2s ease-in-out infinite !important;
}

/* Reveal animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .benefit-item i,
.reveal.is-visible .trust-card i {
  animation-play-state: running !important;
}
