/* MODERN HERO GRADIENT */
.pricing-hero {
    background: linear-gradient(135deg, #4f2be0 0%, #7b2cff 100%);
    padding: 80px 0;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(123, 44, 255, 0.4);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
}

/* PRICING TABS */
.pricing-tabs {
    display: inline-flex;
    background: #f1f0ff;
    padding: 5px;
    border-radius: 12px;
}
.pricing-tabs button {
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}
.pricing-tabs .active {
    background: #6C4CF6;
    color: white;
}

/* CARDS */
.card {
    transition: all 0.3s ease;
    background: #fff;
}
.card:hover {
    transform: translateY(-10px);
}
.card.popular {
    border: 2px solid #6C4CF6 !important;
}
.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.profiles {
    background: #f3f0ff;
    color: #6C4CF6;
    font-weight: 600;
    text-align: center;
}

.btn-primary {
    background-color: #6C4CF6;
    border-color: #6C4CF6;
}

/* ENTERPRISE CARD */
.enterprise-card {
    border-bottom: 5px solid #6C4CF6 !important;
}

/* TABLE STYLES */
.pricing-table th {
    background-color: #f8f9fa;
    color: #4f2be0 !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}