/* Блок «Спасибо за заявку» — общий для всех форм сайта.
   Самодостаточный, БЕЗ собственного фона: цвет текста адаптируется под блок.
   Светлый контекст — базовый; тёмный блок — модификатор .td-thanks--on-dark.
   Коралловые акценты (галочка, номера шагов, кнопка) одинаковы для обоих. */
.td-thanks {
    display: none; /* показывается JS-ом (tdShowThanks): style.display = 'flex' */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px;
}
.td-thanks__icon { margin-bottom: 22px; line-height: 0; }
.td-thanks__title {
    font-size: 34px;
    font-weight: 900;
    color: #363636;
    line-height: 1.15;
    margin: 0 0 14px 0;
    font-family: 'FONT', Arial, sans-serif;
}
.td-thanks__intro {
    font-size: 16px;
    color: #595959;
    line-height: 1.6;
    margin: 0 0 26px 0;
    max-width: 540px;
}
.td-thanks__steps {
    list-style: none;
    counter-reset: td-thanks-step;
    margin: 0 0 32px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    max-width: 540px;
}
.td-thanks__steps li {
    position: relative;
    padding-left: 38px;
    min-height: 26px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #363636;
    line-height: 1.45;
}
.td-thanks__steps li::before {
    counter-increment: td-thanks-step;
    content: counter(td-thanks-step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #E98C6C;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.td-thanks__btn {
    background: #E98C6C;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-block;
    font-family: 'FONT', Arial, sans-serif;
}
.td-thanks__btn:hover { opacity: 0.88; color: #fff; }

/* Тёмный блок — светлый текст */
.td-thanks--on-dark .td-thanks__title { color: #fff; }
.td-thanks--on-dark .td-thanks__intro { color: rgba(255, 255, 255, 0.7); }
.td-thanks--on-dark .td-thanks__steps li { color: #fff; }
