/* Pricing Cards Styling */

/* Remove any featured/popular card auto-selection */
.pricing-card.featured,
.pricing-card.popular,
.pricing-card.recommended {
    /* No special border or background by default */
    border: 2px solid #e0e0e0;
    background: white;
}

/* Popular badge styling - keep badge but no card highlight */
.pricing-card .popular-badge,
.pricing-card .badge,
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
    white-space: nowrap;
}

/* Ensure all cards look identical until interaction */
.pricing-card:not(.selected) {
    border: 2px solid #999 !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Only show special styling on hover or selection */
.pricing-card:not(.selected):hover {
    border-color: #666 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
    transform: translateY(-5px) !important;
}

.pricing-card.selected {
    border: 3px solid #0073aa !important;
    background: white !important;
    box-shadow: 0 20px 40px rgba(0,115,170,0.2) !important;
    transform: scale(1.02) !important;
}

/* Pricing header uniform styling */
.pricing-card .pricing-header {
    background: transparent;
    padding: 0 0 20px 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-card.selected .pricing-header {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    margin: -30px -30px 30px;
    padding: 40px 30px 30px;
    border-radius: 14px 14px 0 0;
    border-bottom: none;
}

/* Price styling */
.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
}

.pricing-card .price-label {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Features list */
.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card .pricing-features li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.pricing-card .pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0073aa;
    font-weight: bold;
}