.plan-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.plan-card.featured {
    border: 2px solid rgba(13, 110, 253, 0.3);
    box-shadow: 0 24px 64px rgba(13, 110, 253, 0.18);
}

.plan-meta {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
}

.plan-features li {
    margin-bottom: 0.6rem;
    color: #475569;
}

.faq-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    height: 100%;
}
