 .btn, .btn-pricing, .btn-pulse, .btn-primary {
    padding: 14px 36px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    background: var(--premium-gradient) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.2) !important;
    position: relative;
    overflow: visible !important;
  }
  
  .btn.secondary, .btn-pricing.secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    color: white !important;
  }
  
  .btn:hover, .btn-pricing:hover, .btn-pulse:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important; 
    filter: brightness(1.1) !important;
  }
  
  .btn.secondary:hover, .btn-pricing.secondary:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.3) !important; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-2px) !important;
  }
  
  .btn-pulse {
    position: relative;
    overflow: hidden;
  }
  
  .btn-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
  }
  
  .btn-pulse:active::after {
    width: 300px;
    height: 300px;
  }
  