.pricing-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    background: #fff;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.pricing-card.is-selected {
    border: 2px solid #0d6efd;
    box-shadow: 0 14px 35px rgba(13, 110, 253, 0.2);
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
}
.pricing-meta {
    color: #6c757d;
    font-size: 0.95rem;
}
.pricing-features li {
    margin-bottom: 0.5rem;
}