.mt-pro-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    background: rgba(7, 10, 18, 0.78);
}
.mt-pro-modal.is-open {
    display: flex;
}
.mt-pro-card {
    width: min(520px, calc(100vw - 28px));
    margin: 0 0 18px;
    padding: 22px;
    border: 1px solid #2a3147;
    border-radius: 8px;
    background: #171c2d;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}
.mt-pro-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}
.mt-pro-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 950;
    letter-spacing: 0;
}
.mt-pro-sub {
    margin: 6px 0 0;
    color: #9aa4ba;
    font-size: 0.9rem;
    line-height: 1.45;
}
.mt-pro-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    color: #9aa4ba;
    background: #22283b;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}
.mt-pro-close:hover {
    color: #ffffff;
    background: #2a3147;
}
.mt-pro-benefits {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}
.mt-pro-benefits li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #dfe6f5;
    font-size: 0.9rem;
    font-weight: 750;
}
.mt-pro-benefits li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #58cc02;
    flex: 0 0 auto;
}
.mt-pro-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.mt-pro-plan {
    position: relative;
    min-height: 112px;
    padding: 14px;
    border: 2px solid #30374e;
    border-radius: 8px;
    background: #1d2335;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    font: inherit;
}
.mt-pro-plan:hover,
.mt-pro-plan.is-selected {
    border-color: #58cc02;
    background: #17320f;
}
.mt-pro-plan.is-featured::after {
    content: "Beste Option";
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #58cc02;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
}
.mt-pro-plan-name {
    display: block;
    color: #b9c3d8;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.mt-pro-plan-price {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    font-weight: 950;
}
.mt-pro-plan-detail {
    display: block;
    margin-top: 6px;
    color: #8a94ad;
    font-size: 0.74rem;
}
.mt-pro-error {
    display: none;
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 75, 75, 0.28);
    border-radius: 8px;
    background: rgba(255, 75, 75, 0.08);
    color: #ff9a9a;
    font-size: 0.82rem;
    line-height: 1.4;
}
.mt-pro-error.is-visible {
    display: block;
}
.mt-pro-actions {
    display: grid;
    gap: 9px;
}
.mt-pro-primary,
.mt-pro-secondary {
    min-height: 48px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 950;
}
.mt-pro-primary {
    background: #58cc02;
    color: #ffffff;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18);
}
.mt-pro-primary:disabled,
.mt-pro-secondary:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}
.mt-pro-secondary {
    background: #252c40;
    color: #dfe6f5;
    border: 1px solid #343c55;
}
.mt-pro-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
}
.mt-pro-links a {
    color: #8a94ad;
    font-size: 0.76rem;
    text-decoration: none;
}
.mt-pro-links a:hover {
    color: #ffffff;
}
.mt-pro-status {
    color: #8a94ad;
    font-size: 0.82rem;
    text-align: center;
    min-height: 18px;
}
@media (max-width: 520px) {
    .mt-pro-plans {
        grid-template-columns: 1fr;
    }
    .mt-pro-card {
        margin-bottom: 10px;
        padding: 18px;
    }
}
