/* Tier Selection Styles */

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.tier-card.selected {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.tier-card.featured {
    border-color: #00E676;
    background: rgba(0, 230, 118, 0.05);
}

.tier-card.featured:hover,
.tier-card.featured.selected {
    border-color: #00E676;
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.3);
}

.tier-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
}

.tier-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    color: #6C63FF;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.tier-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.price-label {
    font-size: 20px;
    color: #a0a0a0;
}

.price-savings {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #00E676;
    font-weight: 700;
}

.tier-features {
    margin-bottom: 30px;
}

.tier-features h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.tier-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    line-height: 1.5;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-ideal {
    text-align: center;
    padding: 15px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    color: #d0d0d0;
    font-style: italic;
}

/* Payment Section */
.payment-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-amount-display {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.payment-amount-display .amount-label {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.payment-amount-display .amount-value {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.payment-amount-display .amount-bs {
    font-size: 16px;
    color: #d0d0d0;
}

@media (max-width: 768px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .tier-card {
        padding: 30px 20px;
    }
}
