#pricingModal,
#videoModal {
    z-index: 1100;
}

.plan-card-container {
    max-width: 384px;
    width: 100%;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.plan-card .icon-circle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #cbd5e1;
    background-color: #f8fafc;
    border-radius: 9999px;
    flex-shrink: 0;
}

.plan-card .icon-circle svg {
    width: 20px;
    height: 20px;
    display: block;
    color: #1e2937;
}

.plan-card-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #64748b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.plan-card-close:hover {
    color: #0f172a;
    background-color: #f1f5f9;
}