/* Pricing Section Enhanced Animations */
.pricing-section {
    position: relative;
    overflow: hidden;
  }
  
  .pricing-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  
  .pricing-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgba(0, 200, 255, 0.2);
    border-radius: 50%;
    animation: particle-float 15s infinite linear;
  }
  
  @keyframes particle-float {
    0% {
      transform: translateY(0) translateX(0);
      opacity: 0;
    }
    10% {
      opacity: 0.5;
    }
    90% {
      opacity: 0.5;
    }
    100% {
      transform: translateY(-100vh) translateX(100px);
      opacity: 0;
    }
  }
  
  .pricing-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.4);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }
  
  .price-bounce {
    animation: price-bounce 0.5s ease;
  }
  
  @keyframes price-bounce {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  
  .highlight-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    overflow: hidden;
    z-index: 2;
  }
  
  .highlight-badge span {
    position: absolute;
    display: block;
    width: 120px;
    padding: 5px 0;
    background: linear-gradient(to right, #0055aa, #00c8ff);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 20px;
    right: -30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: badge-glow 2s infinite alternate;
  }
  
  @keyframes badge-glow {
    0% {
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    100% {
      box-shadow: 0 5px 15px rgba(0, 200, 255, 0.5);
    }
  }
  
  /* Enhanced pricing plan animations */
  .pricing-plan {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .pricing-plan:hover .pricing-header-section {
    transform: translateY(-10px);
  }
  
  .pricing-header-section {
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .pricing-header-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .pricing-plan:hover .pricing-header-section::before {
    opacity: 1;
    animation: ripple 1.5s ease-out;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
  