.anketa-body {
    background: #f0f4f8;
    color: #000;
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

@media (min-width: 901px) {
    .anketa-body {
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.anketa-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@media (min-width: 901px) {
    .anketa-page {
        min-height: 100vh;
    }
}

/* Header */
.anketa-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 44px;
    background: #fff;
    flex-shrink: 0;
}

.anketa-header__logo {
    justify-self: start;
    display: block;
    max-width: 238px;
}

.anketa-header__logo-img {
    display: block;
    width: auto;
    max-height: 46px;
}

.anketa-header__logo-img--mobile {
    display: none;
}

.anketa-header__title {
    margin: 0;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.2;
    color: #373b42;
    text-align: center;
    min-width: 0;
}

.anketa-header__phone {
    justify-self: end;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #00b129;
    text-decoration: none;
    white-space: nowrap;
}

.anketa-header__phone:hover {
    opacity: 0.85;
}

/* Main */
.anketa-main {
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px 32px 16px;
}

.anketa-hero {
    background: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, min(490px, 38%));
    gap: clamp(16px, 2.5vw, 32px);
    padding: clamp(24px, 2.5vw, 32px) clamp(24px, 3vw, 44px);
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.anketa-hero__content,
.anketa-hero__aside {
    min-width: 0;
}

.anketa-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 20px;
    margin-bottom: 16px;
    border: 1px solid #00b129;
    border-radius: 10px;
    background: #e7fbeb;
    font-weight: 500;
    font-size: 14px;
    color: #00b129;
}

.anketa-hero__title {
    margin: 0 0 20px;
    max-width: 705px;
}

.anketa-hero__title-accent {
    display: block;
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.05;
    color: #00b129;
    margin-bottom: 6px;
}

.anketa-hero__title-rest {
    display: block;
    font-weight: 700;
    font-size: clamp(22px, 2.5vw, 36px);
    line-height: 1.1;
    color: #000;
}

.anketa-hero__warm {
    margin: 0 0 28px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.42;
    color: #373b42;
}

.anketa-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(390px, 100%);
    max-width: 100%;
    min-height: 62px;
    padding: 15px 24px;
    border: none;
    border-radius: 10px;
    background: #00b129;
    box-shadow: 0 12px 28px -8px rgba(0, 177, 41, 0.26);
    color: #fff;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.15;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.anketa-hero__cta:hover {
    background: #009a24;
}

.anketa-hero__cta:active {
    transform: translateY(1px);
}

.anketa-hero__trust {
    margin: 20px 0 28px;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.35;
    color: #373b42;
}

.anketa-advantages {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 660px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.anketa-advantages__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.anketa-advantages__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #e7fbeb;
}

.anketa-advantages__icon img,
.anketa-advantages__icon svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.anketa-advantages__label {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.18;
    color: #23272e;
}

.anketa-hero__aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 0;
}

.anketa-hero__aside-tag {
    margin: 0 0 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    color: #00b129;
    text-align: center;
}

.anketa-hero__photo-wrap {
    width: 100%;
    max-width: min(446px, 100%);
    max-height: min(556px, calc(100vh - 300px));
    aspect-ratio: 446 / 556;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e7fbeb 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 1;
}

.anketa-hero__photo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
}

.anketa-hero__photo-caption {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.2;
    color: #787879;
    text-align: center;
}

/* Footer */
.anketa-footer {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: minmax(0, 310px) minmax(0, 1fr) minmax(0, 380px);
    gap: 24px;
    padding: 20px 44px;
    background: #23272e;
    color: #fff;
}

.anketa-footer__col {
    font-size: 10px;
    line-height: 1.25;
}

.anketa-footer__col--brand {
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}

.anketa-footer__col--legal,
.anketa-footer__col--requisites {
    color: #b9bdc4;
}

.anketa-footer__requisites-title {
    margin: 0 0 8px;
    font-weight: 500;
    color: #fff;
}

.anketa-footer__requisites-block {
    margin: 0 0 10px;
}

.anketa-footer__requisites-block:last-child {
    margin-bottom: 0;
}

.anketa-footer__link {
    color: #b9bdc4;
    text-decoration: none;
}

.anketa-footer__link:hover {
    color: #fff;
}

.anketa-footer__policies {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.anketa-footer__policies .anketa-footer__link {
    font-size: 10px;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Quiz */
.anketa-quiz {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.anketa-quiz.is-open {
    display: block;
}

.anketa-quiz__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.anketa-quiz__modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: min(1150px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.anketa-quiz__modal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    background: #00b129;
    border-radius: 24px 0 0 24px;
}

.anketa-quiz__close {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #373b42;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.anketa-quiz__body {
    display: grid;
    grid-template-columns: minmax(0, 520px) 340px;
    gap: 162px;
    align-items: start;
    flex: 1;
    min-height: 0;
    padding: 62px 100px 76px 78px;
    overflow: auto;
}

.anketa-quiz__main {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.anketa-quiz__title {
    margin: 0 0 22px;
    max-width: 560px;
    font-weight: 700;
    font-size: 29px;
    line-height: 1.15;
    color: #000;
}

.anketa-quiz__step-label {
    margin: 0 0 12px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    color: #00b129;
}

.anketa-quiz__progress {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.anketa-quiz__progress-item {
    flex: 0 0 112px;
    height: 8px;
    border-radius: 10px;
    background: #e1e7ee;
}

.anketa-quiz__progress-item.is-active {
    background: #00b129;
}

.anketa-quiz__form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.anketa-quiz__step {
    display: none;
    flex-direction: column;
}

.anketa-quiz__step.is-active {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
}

.anketa-quiz__step[hidden] {
    display: none !important;
}

.anketa-quiz__question {
    margin: 0;
    max-width: 620px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: #000;
}

.anketa-quiz__step:not(:has(.anketa-quiz__hint)) .anketa-quiz__question {
    margin-bottom: 102px;
}

.anketa-quiz__step:has(.anketa-quiz__hint) .anketa-quiz__question {
    margin-bottom: 44px;
}

.anketa-quiz__hint {
    margin: 0 0 42px;
    max-width: 610px;
    font-size: 15px;
    line-height: 1.4;
    color: #787879;
}

.anketa-quiz__hint--success {
    color: #373b42;
    font-size: 16px;
}

.anketa-field {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-bottom: 0;
}

.anketa-input {
    width: 100%;
    min-height: 60px;
    padding: 16px 20px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    color: #23272e;
    outline: none;
    transition: border-color 0.2s;
}

.anketa-input:focus,
.anketa-input.is-error {
    border-color: #00b129;
}

.anketa-input.is-error {
    border-color: #e53935;
}

.anketa-field__error {
    margin: 8px 0 0;
    font-size: 13px;
    color: #e53935;
}

.anketa-select {
    position: relative;
}

.anketa-select__trigger {
    width: 100%;
    min-height: 58px;
    padding: 16px 48px 16px 20px;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.anketa-select__trigger.is-error {
    border-color: #e53935;
}

.anketa-select__value.is-placeholder {
    color: #787879;
}

.anketa-select__arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #00b129;
    font-size: 22px;
    line-height: 1;
}

.anketa-select__list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 5;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #edf1f5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.anketa-select__option {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-bottom: 1px solid #edf1f5;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    text-align: left;
    color: #23272e;
    cursor: pointer;
}

.anketa-select__option:hover,
.anketa-select__option.is-highlighted {
    background: #f7fff3;
}

.anketa-select__option:last-child {
    border-bottom: none;
}

.anketa-autocomplete {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 5;
    max-height: 220px;
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #edf1f5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.anketa-autocomplete__item {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-bottom: 1px solid #edf1f5;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    text-align: left;
    color: #23272e;
    cursor: pointer;
}

.anketa-autocomplete__item:hover,
.anketa-autocomplete__item.is-highlighted {
    background: #f7fff3;
}

.anketa-quiz__actions {
    margin-top: 168px;
}

.anketa-quiz__btn[hidden] {
    display: none !important;
}

.anketa-quiz__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    min-height: 58px;
    padding: 15px 24px;
    border: none;
    border-radius: 10px;
    background: #00b129;
    box-shadow: 0 12px 28px -8px rgba(0, 177, 41, 0.26);
    color: #fff;
    font-family: inherit;
    font-weight: 500;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s;
}

.anketa-quiz__btn:hover:not(:disabled) {
    background: #009a24;
}

.anketa-quiz__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.anketa-quiz__success-img {
    display: block;
    width: 120px;
    margin-top: 16px;
}

.anketa-quiz__aside {
    margin-top: 94px;
}

.anketa-quiz__aside-card {
    width: 340px;
    height: 420px;
    padding: 50px 44px 32px;
    border-radius: 18px;
    background: #f0f4f8;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.anketa-quiz__aside-icon {
    font-weight: 700;
    font-size: 58px;
    line-height: 1;
    color: #00b129;
}

.anketa-quiz__aside-title {
    margin: 34px 0 22px;
    max-width: 240px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #23272e;
}

.anketa-quiz__aside-text {
    margin: 0 0 22px;
    max-width: 252px;
    font-size: 15px;
    line-height: 1.4;
    color: #373b42;
}

.anketa-quiz__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 10px;
    background: #e7fbeb;
    font-weight: 500;
    font-size: 14px;
    color: #00b129;
}

/* Laptop / small desktop (e.g. MacBook 14") */
@media (max-width: 1440px) and (min-width: 901px) {
    .anketa-quiz__modal {
        max-width: min(960px, calc(100vw - 40px));
        max-height: calc(100dvh - 40px);
        border-radius: 20px;
    }

    .anketa-quiz__close {
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .anketa-quiz__body {
        grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
        gap: 32px;
        padding: 36px 40px 40px 52px;
    }

    .anketa-quiz__title {
        margin-bottom: 14px;
        max-width: none;
        font-size: 24px;
    }

    .anketa-quiz__step-label {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .anketa-quiz__progress {
        gap: 12px;
        margin-bottom: 28px;
    }

    .anketa-quiz__progress-item {
        flex: 1;
        max-width: 88px;
        height: 7px;
    }

    .anketa-quiz__question {
        max-width: none;
        font-size: 24px;
    }

    .anketa-quiz__step:not(:has(.anketa-quiz__hint)) .anketa-quiz__question {
        margin-bottom: 28px;
    }

    .anketa-quiz__step:has(.anketa-quiz__hint) .anketa-quiz__question {
        margin-bottom: 12px;
    }

    .anketa-quiz__hint {
        margin-bottom: 20px;
        max-width: none;
        font-size: 14px;
    }

    .anketa-field {
        max-width: none;
    }

    .anketa-input,
    .anketa-select__trigger {
        min-height: 52px;
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 15px;
    }

    .anketa-quiz__actions {
        margin-top: auto;
        padding-top: 28px;
    }

    .anketa-quiz__btn {
        min-width: 220px;
        min-height: 52px;
        font-size: 16px;
    }

    .anketa-quiz__aside {
        margin-top: 0;
        align-self: center;
    }

    .anketa-quiz__aside-card {
        width: 100%;
        height: auto;
        padding: 28px 24px 24px;
    }

    .anketa-quiz__aside-icon {
        font-size: 44px;
    }

    .anketa-quiz__aside-title {
        margin: 18px 0 12px;
        font-size: 18px;
    }

    .anketa-quiz__aside-text {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .anketa-quiz__step[data-step="4"] .anketa-quiz__actions {
        margin-top: auto;
        padding-top: 24px;
    }
}

@media (max-width: 1280px) and (min-width: 901px) {
    .anketa-quiz__body {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 36px 40px 40px 52px;
    }

    .anketa-quiz__aside {
        display: none;
    }
}

@media (max-height: 820px) and (min-width: 901px) {
    .anketa-quiz__modal {
        max-height: calc(100dvh - 16px);
    }

    .anketa-quiz__body {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 28px 32px 32px 44px;
    }

    .anketa-quiz__aside {
        display: none;
    }

    .anketa-quiz__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .anketa-quiz__progress {
        margin-bottom: 20px;
    }

    .anketa-quiz__step:not(:has(.anketa-quiz__hint)) .anketa-quiz__question {
        margin-bottom: 20px;
    }

    .anketa-quiz__step:has(.anketa-quiz__hint) .anketa-quiz__question {
        margin-bottom: 8px;
    }

    .anketa-quiz__hint {
        margin-bottom: 16px;
    }

    .anketa-quiz__actions {
        padding-top: 20px;
    }
}

/* Narrow desktop / zoom */
@media (max-width: 1400px) and (min-width: 901px) {
    .anketa-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, min(380px, 34%));
    }

    .anketa-advantages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .anketa-hero__photo-wrap {
        max-height: min(480px, calc(100vh - 280px));
    }

    .anketa-header {
        padding-left: 24px;
        padding-right: 24px;
    }

    .anketa-footer {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        padding-left: 24px;
        padding-right: 24px;
    }

    .anketa-footer__col--requisites {
        grid-column: 1 / -1;
    }
}

/* Tablet / narrow desktop */
@media (max-width: 1200px) {
    .anketa-hero {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .anketa-hero__aside {
        order: 0;
    }

    .anketa-hero__photo-wrap {
        max-width: 320px;
        max-height: none;
        aspect-ratio: 4 / 5;
        margin: 0 auto;
    }

    .anketa-hero__cta {
        min-width: 0;
        width: 100%;
    }

    .anketa-quiz__body {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 36px 32px 40px 52px;
    }

    .anketa-quiz__aside {
        display: none;
    }

    .anketa-quiz__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .anketa-quiz__progress {
        margin-bottom: 28px;
    }

    .anketa-quiz__question {
        font-size: 24px;
    }

    .anketa-quiz__step:not(:has(.anketa-quiz__hint)) .anketa-quiz__question {
        margin-bottom: 28px;
    }

    .anketa-quiz__step:has(.anketa-quiz__hint) .anketa-quiz__question {
        margin-bottom: 12px;
    }

    .anketa-quiz__actions {
        margin-top: auto;
        padding-top: 28px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .anketa-header {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        padding: 14px 16px;
        gap: 8px 12px;
    }

    .anketa-header__logo {
        grid-column: 1;
        grid-row: 1;
        max-width: 160px;
    }

    .anketa-header__logo-img--desktop {
        display: none;
    }

    .anketa-header__logo-img--mobile {
        display: block;
        max-height: 36px;
    }

    .anketa-header__phone {
        grid-column: 2;
        grid-row: 1;
        font-size: 16px;
    }

    .anketa-header__title {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 14px;
        text-align: left;
    }

    .anketa-main {
        padding: 12px 12px 0;
    }

    .anketa-hero {
        border-radius: 18px;
        padding: 20px 16px;
        gap: 20px;
    }

    .anketa-hero__title-accent {
        font-size: 26px;
    }

    .anketa-hero__title-rest {
        font-size: 22px;
    }

    .anketa-hero__warm {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .anketa-hero__trust {
        font-size: 14px;
        margin: 16px 0 20px;
    }

    .anketa-advantages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
        max-width: none;
    }

    .anketa-hero__photo-caption {
        font-size: 11px;
    }

    .anketa-footer {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        margin-top: 12px;
    }

    .anketa-footer__col--brand {
        font-size: 11px;
    }

    .anketa-quiz__modal {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        max-width: none;
        max-height: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .anketa-quiz__modal::before {
        width: 6px;
        border-radius: 0;
    }

    .anketa-quiz__body {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 56px 20px 24px 24px;
        min-height: 100%;
    }

    .anketa-quiz__main {
        flex: 1;
        min-height: 0;
    }

    .anketa-quiz__title {
        max-width: 300px;
        font-size: 24px;
        line-height: 1.18;
        margin-bottom: 16px;
    }

    .anketa-quiz__step-label {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .anketa-quiz__progress {
        gap: 16px;
        margin-bottom: 35px;
    }

    .anketa-quiz__progress-item {
        flex: 0 0 70px;
        height: 7px;
        min-width: 0;
    }

    .anketa-quiz__question {
        font-size: 24px;
        max-width: 342px;
    }

    .anketa-quiz__step:not(:has(.anketa-quiz__hint)) .anketa-quiz__question {
        margin-bottom: 46px;
    }

    .anketa-quiz__step:has(.anketa-quiz__hint) .anketa-quiz__question {
        margin-bottom: 12px;
    }

    .anketa-quiz__hint {
        margin-bottom: 24px;
        max-width: 342px;
    }

    .anketa-field,
    .anketa-input,
    .anketa-select__trigger {
        max-width: 342px;
    }

    .anketa-input {
        min-height: 56px;
        font-size: 15px;
    }

    .anketa-select__trigger {
        min-height: 56px;
        font-size: 15px;
    }

    .anketa-quiz__actions {
        margin-top: auto;
        padding-top: 48px;
    }

    .anketa-quiz__btn {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        font-size: 16px;
    }

    .anketa-quiz__close {
        top: 20px;
        right: 18px;
        width: 38px;
        height: 34px;
    }
}

/* Policy pages */
.anketa-page--policy .anketa-main--policy {
    padding-bottom: 32px;
}

.anketa-policy {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px 36px;
}

.anketa-policy__back {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 14px;
    color: #00b129;
    text-decoration: none;
}

.anketa-policy__back:hover {
    opacity: 0.85;
}

.anketa-policy__title {
    margin: 0 0 24px;
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.2;
    color: #000;
}

.anketa-policy__content {
    font-size: 14px;
    line-height: 1.55;
    color: #373b42;
}

.anketa-policy__content p {
    margin: 0 0 14px;
}

.anketa-policy__content ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.anketa-policy__content li {
    margin-bottom: 8px;
}

.anketa-policy__content a {
    color: #00b129;
    text-decoration: underline;
}

.anketa-consents {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
}

.anketa-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.anketa-consent input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #00b129;
}

.anketa-consent__text {
    font-size: 13px;
    line-height: 1.4;
    color: #373b42;
}

.anketa-consent__text a {
    color: #00b129;
    text-decoration: underline;
}

.anketa-quiz__step[data-step="4"] .anketa-quiz__actions {
    margin-top: 32px;
}

@media (max-width: 900px) {
    .anketa-policy {
        border-radius: 18px;
        padding: 20px 16px 28px;
    }

    .anketa-consents {
        max-width: 100%;
    }
}
