html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    overflow-x: hidden;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: "Inter", sans-serif;
}

.input-group {
    position: relative;
    max-width: 388px;
}

.input-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 12px 13px;
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    outline: none;
    color: #053D61;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.input-group input:focus {
    border-color: #8dd1fb;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 12px;
    font-size: 12px;
    color: #527389;
}

.input-group label {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #527389;
    pointer-events: none;
    transition: 0.2s ease;
    padding: 0 4px;
}

.zip__input__wrapper {
    width: 100%;
    max-width: 388px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
}

.success-icon {
    background: url('../images/check.svg') no-repeat center/contain;
}

.input-group.success .input-icon {
    opacity: 1;
}

.zip-error {
    font-size: 14px;
    color: #e74242;
    padding-top: 10px;
    min-height: 18px;
}

span.error, span.custom-error {
    color: #e74242;
    display: block;
    padding-top: 10px;
}

.input-group input.error, .input-group.error input {
    border-color: #e74242;
}

.zip__input.error:focus, .base__input.error:focus {
    outline: none;
    box-shadow: none;
}

.btn__default {
    min-width: 321px;
    border-radius: 1000px;
    border: none;
    background: linear-gradient(91deg, #0187B3 -0.8%, #00CBDC 47.91%, #058C95 96.62%);
    display: flex;
    padding: 17px 0;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

@keyframes pulse-soft {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-pulse {
    animation: pulse-soft 1.6s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
}

.btn__default:hover {
    background: linear-gradient(91deg, #017496 -0.8%, #00B4C3 47.91%, #047A82 96.62%);
    color: #FFF;
}

.btn__default.disabled {
    background: linear-gradient(91deg, #0187b3c4 -0.8%, #00cadca8 47.91%, #058b95a2 96.62%);
    color: #ffffffc1;
}

.btn__secondary {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50px;
    border: 2px solid #0187B3;
    background: #FFFFFF;
    color: #0187B3;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.step .btn__secondary {
    width: 54px;
    height: 54px;
}

.radio__btns__wrapper {
    display: flex;
    gap: 11px;
    justify-content: center;
    width: 100%;
    max-width: 388px;
}

/* Step 1: 3 cards — allow wider layout */
.step-1 .radio__btns__wrapper {
    max-width: 610px;
}

.btn__tertiary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
    border-radius: 12px;
    border: 2px solid #DBDBDB;
    transition: all .3s;
    background: #FFF;
    align-items: center;
    max-width: 156px;
    max-height: 156px;
    padding: 15px 15px 7px 16px;
    box-sizing: border-box;
    cursor: pointer;

    input[type="radio"] {
        display: none;
    }

    &:hover {
        border: 2px solid #0187B3;
    }

    span {
        color: #053D61;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
    }
}

.step-1 .btn__tertiary {
    max-width: 188px;
}

.radio__btns__wrapper label:has(input[type="radio"]:checked) {
    border: 2px solid #0187B3;
}

.step-1 .radio__btns__wrapper label span {
    font-size: 14px;
    margin-top: 5px;
}

.btn__tertiary img {
    width: 138px;
    height: 82px;
    object-fit: cover;
}

.group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
    margin-top: 7px;
    max-width: 388px;
    align-items: center;
    justify-content: center;
}

.checkbox__group {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 388px;
    box-sizing: border-box;
    color: #527389;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 10px;
}

.checkbox__group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox__input {
    display: none;
}

.checkbox__custom {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #00B9C5;
    background: #FFF;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s, transform 0.2s;
}

.checkbox__input:checked + .checkbox__custom {
    background-color: #DCF3F5;
    width: 16px;
    height: 16px;
}

.checkbox__custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #00B9C5;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.checkbox__input:checked + .checkbox__custom::after {
    opacity: 1;
}

.reviews__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.reviews__img {
    max-width: 100px;
    max-height: 100px;
}

.reviews__img img {
    width: 100%;
    height: 100%;
}

.reviews__img:first-child img {
    cursor: pointer;
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    z-index: 10;
}

.ui-widget-content {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #333333;
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: normal;
    color: #ffffff;
}

.ui-autocomplete {
    width: 100% !important;
    max-width: none;
    box-sizing: border-box;
    position: absolute !important;
}

.ui-menu {
    box-sizing: border-box;
}

.ui-helper-hidden-accessible{
  display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 100;
}

.overlay.active,
.exit__popup.active {
    opacity: 1;
    visibility: visible;
}

.exit__popup {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    background: #FFF;
    min-width: 447px;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 101;
    transition: 0.3s;
}

.exit__popup__wrapper {
    display: flex;
    flex-direction: column;
}

.exit__popup__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 14px;
    margin-bottom: 24px;
}

.popup__btns {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 407px;
}

.popup__btns button {
    width: 50%;
    min-width: fit-content;
}

.popup__title {
    color: #053D61;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.48px;
}

.popup__descr {
    color: #527389;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.close__btn {
    border: none;
    background-color: inherit;
    width: 24px;
    height: 24px;
    align-self: flex-end;
    cursor: pointer;
}

.form-steps {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: 0.3s;
    position: relative;
}

.form-steps.loaded {
    opacity: 1;
    height: 100%;
    visibility: visible;
    min-height: 360px;
    min-width: 400px;
}

.form-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.form-loader.hidden {
    display: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top: 4px solid #32BFD1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* =========================================HEADER===================================== */

.header {
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
    isolation: isolate;
}

.header__text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(91deg, #0187B3 -0.8%, #00CBDC 47.91%, #058C95 96.62%);
    min-height: 24px;
}

.header__text p {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.header__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.form__wrapper {
    display: flex;
    padding: 18px 60px 32px;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    background: #FFF;
    min-width: 805px;
    min-height: 560px;
    position: relative;
}

.main__title {
    color: #053D61;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.56px;
    max-width: 532px;
}

.main__subtitle {
    color: #527389;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 344px;
}

/* "windows service" accent — matches Figma #00CBDC */
.title__accent {
    color: #00CBDC;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.56px;
}

.step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    flex-direction: column;
    align-items: center;
    min-height: 360px;
    gap: 24px;
}

.step.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.btns__wrapper {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 388px;
    justify-content: center;
    align-items: center;
}

.btns__wrapper__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.form__header__progress {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.form__header__progress__item {
    width: 52px;
    height: 6px;
    border-radius: 2px;
    background: #EAEAEB;
}

.form__header__progress__item.active {
    background: #32BFD1;
}

.descr__group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 10px;
}

.descr__group img {
    width: 20px;
    height: 20px;
}

.main__descr {
    color: #527389;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.step__text {
    width: 100%;
    color: #527389;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
}

.step__text a {
    color: #527389;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.btns__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    justify-content: center;
    align-items: stretch;
}

.btns__group .btn__tertiary {
    display: flex;
    min-height: 54px;
    width: 100%;
    max-width: 100%;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* List-select buttons (step 2 — vertical full-width options) */
.list__select__wrapper {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
    max-width: 388px;
}

.btn__list {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #DBDBDB;
    background: #FFF;
    cursor: pointer;
    padding: 12px 16px;
    box-sizing: border-box;
    transition: border 0.2s;

    input[type="radio"] {
        display: none;
    }

    span {
        color: #053D61;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        line-height: 120%;
    }

    &:hover {
        border: 2px solid #0187B3;
    }
}

.btn__list:has(input[type="radio"]:checked) {
    border: 2px solid #0187B3;
}

.address__panel {
    width: 100%;
    max-width: 388px;
    color: #053D61;
    text-align: center;
    border-radius: 12px;
    background: #F6F5FD;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}


/* ======================================REVIEW=================================== */

.review {
    width: 100%;
    background: #F4F8FA;
}

.review__wrapper {
    max-width: 1252px;
    padding: 32px 10px 0px 10px;
    margin: 0 auto;
}

.review__list {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.review__list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: url("../images/concept.png") center/cover no-repeat;
    min-width: 142px;
    min-height: 60px;
    justify-content: center;
}

.review__list__item span {
    color: #212327;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: uppercase;
}

.review__list__item p {
    color: #3E5877;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 77px;
}

.review__block {
    display: flex;
    gap: 4px;
    align-items: center;
}

.review__block img {
    width: 22px;
    height: 22px;
}


/* ======================================FOOTER================================== */

.footer {
    background: #F4F8FA;
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px 87px 31px 87px;
    justify-content: center;
    align-items: center;
}

.footer__logo {
    width: 134px;
    height: 45px;
    margin-bottom: 20px;
}

.footer__logo img {
    width: 100%;
    height: 100%;
}

.footer__text {
    color: #3E5877;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    margin-bottom: 20px;
    position: relative;
}

.footer__links__list {
    display: flex;
    gap: 22px;
    margin-bottom: 20px;
}

.footer__links__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: #527389;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.footer__copyright {
    color: rgba(3, 40, 63, 0.44);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 200px;
}


/* ==============================MISC================================ */

#email-suggestion {
    display: none;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #3E5877;
    font-style: normal;
    font-weight: 300;
}

.suggestion_email {
    font-weight: 600;
}

.suggestion_link {
    color: rgb(5, 61, 97);
    font-weight: 400;
    text-underline-position: from-font;
}

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* ======================================REVIEWS MODAL===================================== */

.reviews-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    z-index: 100;
    overflow-y: auto;
}

.reviews-modal--open {
    display: flex;
}

.reviews-modal__card {
    background: #FFF;
    border-radius: 14px;
    width: 100%;
    max-width: 706px;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
}

.reviews-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.reviews-modal__brand {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.reviews-modal__brand-top {
    display: flex;
    align-items: center;
    gap: 9px;
}

.reviews-modal__brand-name {
    font-size: 22px;
    font-weight: 500;
    color: #053D61;
    line-height: 1.2;
}

.reviews-modal__brand-subtitle {
    font-size: 16px;
    color: #91969E;
    line-height: 1.3;
}

.reviews-modal__rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews-modal__rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-modal__rating-score {
    font-size: 44px;
    font-weight: 500;
    color: #053D61;
    line-height: 1;
}

.reviews-modal__rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.reviews-modal__rating-max {
    font-size: 18px;
    color: #91969E;
}

.reviews-modal__rating-count {
    font-size: 16px;
    color: #91969E;
}

.reviews-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #91969E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-modal__list {
    display: flex;
    flex-direction: column;
}

.reviews-modal__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #EBEBEB;
}

.reviews-modal__item:first-child {
    border-top: 1px solid #EBEBEB;
}

.reviews-modal__item:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.reviews-modal__item-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #adadad;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-modal__item-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.reviews-modal__item-body {
    flex: 1;
    min-width: 0;
}

.reviews-modal__item-name {
    font-size: 16px;
    font-weight: 500;
    color: #053D61;
    margin-bottom: 5px;
}

.reviews-modal__item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reviews-modal__item-stars {
    display: flex;
    gap: 2px;
}

.reviews-modal__item-stars-img {
    height: 16px;
}

.reviews-modal__item-date {
    font-size: 13px;
    color: #91969E;
}

.reviews-modal__item-text {
    font-size: 14px;
    color: #053D61;
    line-height: 1.6;
    margin: 0;
}


/* ===================================MEDIA============================= */

@media (min-height: 1210px) {
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    header {
        flex: 1;
    }
}

@media (max-width: 1000px) {
    .main__title, .title__accent {
        font-size: 28px;
    }

    .review__list {
        flex-wrap: wrap;
        gap: 30px;
    }

    .form__wrapper {
        min-width: 600px;
        height: 100%;
    }
}

@media (max-width: 760px) {
    .main__title, .title__accent {
        font-size: 20px;
    }

    .form__wrapper {
        padding: 40px 20px 28px;
        min-width: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        min-height: 580px;
    }

    .header__form {
        width: 100%;
    }

    .footer__wrapper {
        padding: 30px 12px;
        align-items: center;
    }

    /* 3 cards in one row — flex: 1 0 0, clipped by overflow */
    .step-1 .radio__btns__wrapper {
        max-width: 100%;
        flex-wrap: nowrap;
        gap: 11px;
    }

    .step-1 .btn__tertiary {
        flex: 1 0 0;
        min-width: 0;
        max-width: none;
        max-height: 156px;
        height: 156px;
        overflow: hidden;
        padding: 10px 5px 7px;
    }

    .step-1 .btn__tertiary img {
        width: 100%;
        max-width: 100%;
        height: 92px;
        object-fit: cover;
    }

    .step-1 .btn__tertiary span {
        font-size: 12px;
    }

    /* Next button fills full width on step 1 */
    .step-1 .btns__wrapper {
        max-width: 100%;
    }

    .step-1 .btn__default {
        min-width: 0;
        width: 100%;
        flex: 1;
    }

    /* Step 2 — list-select + button row full-width on mobile */
    .step-2 .list__select__wrapper {
        max-width: 100%;
    }

    .step-2 .btns__wrapper {
        max-width: 100%;
    }

    .step-2 .btn__default {
        min-width: 0;
        flex: 1 0 0;
    }

    /* Footer mobile */
    .footer__logo {
        width: 93px;
        height: 34px;
        margin-bottom: 16px;
    }

    .footer__text {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .footer__links__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
        margin-bottom: 16px;
    }

    .footer__links__group {
        flex-direction: row;
        gap: 12px;
    }

    .footer__link {
        font-size: 12px;
    }

    .footer__copyright {
        font-size: 12px;
    }
}

@media (max-width: 450px) {
    .form__header__progress__item {
        width: 40px;
    }

    .form-steps.loaded {
        min-width: 100%;
    }

    /* Non-step-1 tertiary buttons keep default padding */
    .step-2 .btn__tertiary,
    .step-3 .btn__tertiary {
        padding: 11px 11px 24px 11px;
    }

    .btns__wrapper {
        margin-top: inherit;
    }

    .step {
        min-height: 460px;
    }

    .form__wrapper {
        max-height: 100%;
        height: 100%;
    }

    /* Other steps: Next button slightly narrower */
    .step-3 .btn__default,
    .step-4 .btn__default,
    .step-5 .btn__default,
    .step-6 .btn__default,
    .step-7 .btn__default {
        min-width: 80%;
    }

    .exit__popup {
        min-width: 300px;
        padding: 10px;
    }

    .popup__title {
        font-size: 20px;
    }

    .popup__descr {
        font-size: 12px;
    }

    .descr__group {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .main__descr {
        text-align: left;
    }

    .reviews__img {
        max-width: 75px;
        max-height: 65px;
    }

  .reviews-modal__rating-score{
        font-size: 36px;
    }
}

@media (max-width: 360px) {
    .form__header__progress__item {
        width: 34px;
    }

    /* Tighten card gaps on very small screens */
    .step-1 .radio__btns__wrapper {
        gap: 6px;
    }

    .step-1 .btn__tertiary {
        padding: 8px 3px 6px;
    }
}