.tpl-prices .prices-diagnostics-card,
.tpl-prices .prices-cta-card {
    background:
        radial-gradient(420px 180px at 100% -10%, rgba(143, 188, 247, 0.14) 0%, rgba(143, 188, 247, 0) 70%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.tpl-prices .prices-factors {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.tpl-prices .prices-factors li {
    position: relative;
    margin: 0;
    padding: 10px 12px 10px 36px;
    border: 1px solid #d7e3f5;
    border-radius: 12px;
    background: #fff;
    color: #234062;
    line-height: 1.4;
}

.tpl-prices .prices-factors li::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2a61ba;
    transform: translateY(-50%);
}

.tpl-prices .prices-table-section + .prices-table-section {
    margin-top: 14px;
}

.tpl-prices .prices-table-wrap {
    overflow-x: auto;
    border: 1px solid #cddbf0;
    border-radius: 16px;
    background: #ffffff;
}

.tpl-prices .prices-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.tpl-prices .prices-table th,
.tpl-prices .prices-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e1e9f6;
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
    color: #1f3658;
}

.tpl-prices .prices-table th {
    font-weight: 700;
    color: #153a73;
    background: #f3f8ff;
}

.tpl-prices .prices-table-summary-row td,
.tpl-prices .prices-table-detail-row td {
    padding: 0;
}

.tpl-prices .prices-table-summary-row:last-of-type td {
    border-bottom: 0;
}

.tpl-prices .prices-table td:last-child {
    white-space: nowrap;
    font-weight: 700;
    color: #154199;
}

.tpl-prices .prices-table-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    text-align: left;
    color: #1f3658;
    font: inherit;
    cursor: pointer;
}

.tpl-prices .prices-table-toggle:hover {
    background: #f9fbff;
}

.tpl-prices .prices-table-toggle:focus-visible {
    outline: 2px solid #2a61ba;
    outline-offset: -2px;
}

.tpl-prices .prices-table-toggle-name {
    position: relative;
    padding-right: 28px;
    font-weight: 600;
}

.tpl-prices .prices-table-toggle-name::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1f5fcf;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.tpl-prices .prices-table-toggle[aria-expanded="true"] .prices-table-toggle-name::after {
    content: "\2212";
}

.tpl-prices .prices-table-toggle-price {
    white-space: nowrap;
    font-weight: 700;
    color: #154199;
}

.tpl-prices .prices-table-detail-row[hidden] {
    display: none;
}

.tpl-prices .prices-table-detail {
    padding: 0 14px 14px;
    color: #4f6482;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px dashed #e1e9f6;
    background: #fcfdff;
}

.tpl-prices .prices-table-link-wrap {
    margin: 14px 0 0;
}

.tpl-prices .prices-table-link {
    min-height: 48px;
    padding-inline: 18px;
    text-decoration: none;
}

.tpl-prices .prices-process-card {
    background:
        radial-gradient(420px 200px at 100% -10%, rgba(145, 188, 245, 0.12) 0%, rgba(145, 188, 245, 0) 72%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.tpl-prices .prices-steps {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: prices-step;
    display: grid;
    gap: 10px;
}

.tpl-prices .prices-steps li {
    position: relative;
    margin: 0;
    padding: 12px 14px 12px 50px;
    border: 1px solid #d7e3f5;
    border-radius: 12px;
    background: #ffffff;
    color: #203b5f;
    line-height: 1.4;
}

.tpl-prices .prices-steps li::before {
    counter-increment: prices-step;
    content: counter(prices-step);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #245ab2;
}

@media (max-width: 860px) {
    .tpl-prices .prices-table th,
    .tpl-prices .prices-table td {
        font-size: 14px;
    }

    .tpl-prices .prices-table-toggle {
        padding: 12px 11px;
        gap: 10px;
    }

    .tpl-prices .prices-table-toggle-name {
        padding-right: 24px;
    }

    .tpl-prices .prices-table-detail {
        padding: 0 11px 12px;
        font-size: 13px;
    }

    .tpl-prices .prices-table-link {
        width: 100%;
        justify-content: center;
    }
}
