/* =============================================
   Pricing Section Styles
   ============================================= */

.pricing-area {
    padding-bottom: 80px;
}

/* Column wrapper for popular card — gives space for the badge */
.pricing-col-popular {
    padding-top: 20px;
}

/* Base card */
.pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.12);
}

/* Popular / featured card */
.pricing-card--popular {
    border: 2px solid #6c5ce7;
    background: rgba(108, 92, 231, 0.08);
}

.pricing-card--popular:hover {
    border-color: #6c5ce7;
}

/* "Most Popular" top badge */
.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c5ce7;
    color: #fff;
    padding: 5px 22px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Plan label badge (Starter / Basic / Premium) */
.pricing-badge {
    margin-bottom: 16px;
}

.pricing-badge__label {
    display: inline-block;
    background: rgba(108, 92, 231, 0.15);
    color: #6c5ce7;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Price */
.pricing-price {
    margin-bottom: 24px;
}

.pricing-price__amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.pricing-price__note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 6px 0 0;
}

/* Features list */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features__item {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features__item--disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features__item .pricing-icon-check {
    color: #6c5ce7;
    margin-right: 10px;
}

.pricing-features__item .pricing-icon-cross {
    color: rgba(255, 255, 255, 0.2);
    margin-right: 10px;
}

/* CTA button — full width */
.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
}
