.hoverLift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hoverLift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricingCard.popular {
    transition: transform 0.3s ease;
}

.pricingCard.popular:hover {
    transform: translateY(-12px);
}

.badgePopular {
    background: #FFD700;
    color: #000;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.bg-gradient {
    background: linear-gradient(135deg,#FF46EB,#AA54FF);
}


/* General Section */
.webPricingSectionAlt {
    background: linear-gradient(135deg, #216265, #000000);
    padding: 5rem 0;
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

/* Header */
.webPricingHeaderAlt .sectionTitle {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.webPricingHeaderAlt .sectionNote {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-top: 0.5rem;
    color: #f0f0f0;
}

/* Cards Grid */
.webPricingCards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Individual Cards */
.webPricingCard {
    background: #fff;
    color: #333;
    border-radius: 2rem;
    padding: 2rem;
    width: 320px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.webPricingCard.popular {
    background: linear-gradient(135deg, #FF46EB, #AA54FF);
    color: #fff;
    transform: scale(1.05);
}

.hoverLift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Card Header */
.pricingCardHeader h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.pricingCardHeader .planTag {
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Features List */
.pricingFeatures {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricingFeatures li {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: 0.5rem;
}

.pricingFeatures li i {
    color: #18CAD2;
    margin-right: 0.5rem;
}

/* Action */
.pricingAction {
    text-align: center;
}

.priceTag {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.liyakaBtnz {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    color: white !important;
}

.liyakaBtnz:hover {
    transform: translateY(-3px);
}

.starterBtn {
    background: #18CAD2;
    color: #fff;
}

.growthBtn {
    background: #FF46EB;
    color: #fff;
}

.customBtn {
    background: #AA54FF;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .webPricingCards {
        flex-direction: column;
        align-items: center;
    }
}


.pricingBenefitsSection {
    background: #f8f9fa;
    color: #333;
    font-family: 'Raleway', sans-serif;
}

.pricingBenefitsHeader .sectionTitle {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
}

.pricingBenefitsHeader .sectionNote {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    color: #666;
}

/* Grid */
.pricingBenefitsGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

/* Individual benefit cards */
.benefitCard {
    background: #fff;
    padding: 2rem;
    border-radius: 2rem;
    width: 250px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.benefitCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Icon */
.benefitIcon {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FF46EB;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Heading */
.benefitCard h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
    margin-bottom: 0.5rem;
}

/* Paragraph */
.benefitCard p {
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
    color: #555;
}
