/* ===================================
   PRICING CARDS - CUSTOM STYLES
   =================================== */

/* Base Pricing Card */
.pricing-card {
    position: relative;
    cursor: pointer;
}

/* Green Card Hover - Yearly */
.pricing-card-green:hover {
    border-color: #10b981 !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

.pricing-card-green:hover h3 {
    color: #10b981;
}

/* Purple Card Hover - Pay As You Go */
.pricing-card-purple:hover {
    border-color: #8b5cf6 !important;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.pricing-card-purple:hover h3 {
    color: #8b5cf6;
}

/* Blue Card Hover - Enterprise */
.pricing-card-blue:hover {
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.pricing-card-blue:hover h3 {
    color: #3b82f6;
}
