.rlm-plan-picker {
    margin: 24px 0;
    padding: 22px;
    border: 1px solid #e5e9f2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(20, 31, 56, .08);
}

.rlm-plan-picker h3 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 20px;
    font-weight: 800;
}

.rlm-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 12px;
}

.rlm-plan-card {
    position: relative;
    display: grid;
    gap: 7px;
    min-height: 120px;
    padding: 16px;
    border: 1px solid #dfe5ef;
    border-radius: 16px;
    cursor: pointer;
    background: #f8fafc;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.rlm-plan-card:hover,
.rlm-plan-card.is-active {
    border-color: #0063e3;
    box-shadow: 0 14px 34px rgba(0, 99, 227, .14);
    transform: translateY(-2px);
}

.rlm-plan-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rlm-plan-card:after {
    content: "";
    position: absolute;
    top: 14px;
    right: 14px;
    width: 12px;
    height: 12px;
    border-radius: 99px;
    background: #d7deea;
}

.rlm-plan-card.is-active:after {
    background: #0063e3;
    box-shadow: 0 0 0 5px rgba(0, 99, 227, .12);
}

.rlm-plan-name {
    color: #111827;
    font-weight: 800;
}

.rlm-plan-time {
    color: #64748b;
    font-size: 13px;
}

.rlm-plan-card strong {
    margin-top: auto;
    color: #0063e3;
    font-size: 18px;
}

.rlm-plan-card del {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
}

.rlm-plan-card ins {
    color: #0063e3;
    text-decoration: none;
}

.rlm-from-price {
    color: #0063e3;
    font-weight: 800;
}

.rlm-license-summary {
    margin: 32px 0;
    padding: 26px;
    border-radius: 22px;
    background: #f6f8fc;
}

.rlm-license-summary h2 {
    margin: 0 0 16px;
}

.rlm-license-card {
    margin: 14px 0;
    padding: 18px;
    border: 1px solid #dde5f2;
    border-radius: 18px;
    background: #fff;
}

.rlm-license-card span {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 99px;
    background: #e7f8ef;
    color: #118545;
    font-size: 12px;
    font-weight: 800;
}

.rlm-license-card h3 {
    margin: 10px 0;
}

.rlm-license-card code {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    background: #101827;
    color: #fff;
    font-size: 14px;
    letter-spacing: .04em;
}

@media (max-width: 640px) {
    .rlm-plan-picker {
        padding: 16px;
        border-radius: 14px;
    }

    .rlm-plan-grid {
        grid-template-columns: 1fr;
    }
}
