/* Pricing Page Custom Styles */

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Value Prop Cards */
.value-prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Payment Methods */
.payment-method:hover {
  color: #0808EE !important;
}

/* Final CTA Button */
.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Compare Table Row Hover */
.compare-row:hover {
  background: rgba(8, 8, 238, 0.02);
}

/* Mobile Sticky CTA */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block !important;
  }
}
