@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-SemiBold.eot);
    src:
        local("Montserrat SemiBold"),
        local("Montserrat-SemiBold"),
        url("../fonts/Montserrat-SemiBold.eot@") format("embedded-opentype"),
        url(../fonts/Montserrat-SemiBold.woff) format("woff"),
        url(../fonts/Montserrat-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Bold.eot);
    src:
        local("Montserrat Bold"),
        local("Montserrat-Bold"),
        url("../fonts/Montserrat-Bold.eot@") format("embedded-opentype"),
        url(../fonts/Montserrat-Bold.woff) format("woff"),
        url(../fonts/Montserrat-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Regular.eot);
    src:
        local("Montserrat Regular"),
        local("Montserrat-Regular"),
        url("../fonts/Montserrat-Regular.eot@") format("embedded-opentype"),
        url(../fonts/Montserrat-Regular.woff) format("woff"),
        url(../fonts/Montserrat-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-Medium.eot);
    src:
        local("Montserrat Medium"),
        local("Montserrat-Medium"),
        url("../fonts/Montserrat-Medium.eot@") format("embedded-opentype"),
        url(../fonts/Montserrat-Medium.woff) format("woff"),
        url(../fonts/Montserrat-Medium.ttf) format("truetype");
}
*,
::before,
::after {
    box-sizing: border-box;
}
body {
    color: #2f302b;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
body.stop {
    overflow: hidden;
}
a {
    color: inherit;
}
input,
textarea {
    outline: unset;
}
.header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
}
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.header__wrapper {
    display: flex;
    padding: 10px 0;
    gap: 20px;
    align-items: center;
}
.header__logo {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.header__logo img {
    max-height: 60px;
}
.header__logo p {
    margin: 0;
    font-size: 13px;
}
.header__logo a {
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    font-size: 24px;
    position: relative;
    top: 2px;
}
.header__logo a span {
    color: #000000;
}
.header__logo a {
    display: flex;
}
.header-logo__img {
    height: 43px;
}
.header__contacts {
    display: flex;
    gap: 20px;
}
.header-contacts__social {
    display: flex;
    gap: 7px;
    margin-top: 3px;
}
.header-social__item {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-item-wa {
    background: #25d366;
}
.social-item-tg {
    background: #2ca5e0;
}
.header-social__item svg {
    height: 20px;
}
.header-contacts__row {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-contacts__icon {
    width: 20px;
    margin-right: 10px;
}
.header-contacts__row span {
    font-size: 20px;
    font-weight: 700;
}
.header-contacts__info {
    font-size: 14px;
    color: #646464;
    margin-left: 30px;
}
.btn {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #000000;
    padding: 12px 20px;
    border-radius: 6px;
    display: inline-block;
    font-family: Montserrat, sans-serif;
    cursor: pointer;
    border: 0;
}
.humburger {
    background-color: rgb(0 0 0 / 0.1);
    height: 48px;
    width: 48px;
    position: relative;
    display: none;
}
.humburger .l1,
.humburger .l2,
.humburger .l3 {
    position: absolute;
    display: block;
    margin: auto;
    top: 48%;
    height: 3px;
    width: 100%;
    left: 0;
    background-color: #000000;
    transition: all 0.2s ease-out;
}
.humburger .l1 {
    top: 23%;
}
.humburger .l3 {
    top: 73%;
}
.humburger.active .l1 {
    transform: rotate(45deg);
    top: 48%;
}
.humburger.active .l2 {
    opacity: 0;
}
.humburger.active .l3 {
    transform: rotate(-45deg);
    top: 48%;
}
.header-nav__list {
    position: relative;
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
}
.header-nav__item {
    display: flex;
    align-items: center;
}
.parrent-item::after {
    content: "";
    border: 5px solid #fff0;
    border-top: 5px solid #000;
    margin-top: 3px;
    margin-left: 6px;
}
.header-nav__link {
    text-decoration: none;
    white-space: nowrap;
}
.submenu {
    position: absolute;
    background: #fff;
    width: auto;
    min-width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 25px 15px 15px;
    list-style: none;
    margin-left: -15px;
    font-size: 15px;
    border-radius: 8px;
    gap: 10px;
    opacity: 0;
    top: 32px;
    pointer-events: none;
}
.header-nav__item:hover .submenu {
    opacity: 1;
    pointer-events: all;
}
.offer {
    background-image: url(../img/offer_bg.webp);
    color: #fff;
    position: relative;
    min-height: 675px;
    display: flex;
    align-items: center;
    background-size: cover;
}
.offer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
}
.offer__wrapper {
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offer__text {
    width: 100%;
}
.offer-text__title {
    font-size: 40px;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
    width: 100%;
    max-width: 740px;
}
.offer-text__title::before {
    content: "";
    position: absolute;
    width: 405px;
    height: 12px;
    background: linear-gradient(90deg, #000000, #454545);
    bottom: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.offer-text__subtitle {
    margin: 10px 0 20px;
}
.offer__form {
    max-width: 400px;
    background: #fff;
    color: #2f302b;
    border-radius: 6px;
    padding: 20px 50px;
    text-align: center;
}
.offer-form__title {
    font-size: 24px;
    font-weight: 700;
}
.offer-form__subtitle {
    margin: 10px 0 15px;
    font-size: 13px;
    color: #7b7b7b;
}
.input {
    background-color: #f4f5f8;
    border: 1px solid #eaeff1;
    height: 50px;
    width: 100%;
    border-radius: 4px;
    padding: 15px;
    font-family: Montserrat, sans-serif;
}
.offer-form__btn {
    margin-top: 15px;
    width: 100%;
}
.form-policy {
    margin-top: 20px;
    font-size: 10px;
    color: #898989;
}
.offer__avantages {
    display: flex;
    gap: 15px;
    margin-top: 60px;
    flex-direction: column;
    max-width: 445px;
}
.offer-avantages__item {
    font-size: 13px;
    flex-shrink: 0;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 7px 15px 7px 7px;
    backdrop-filter: blur(30px);
    border-radius: 100px;
    background: #00000024;
}
.offer-avantages__icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #282c2f, #000000);
    border-radius: 100%;
    flex-shrink: 0;
}
.offer-avantages__icon svg {
    height: 25px;
    fill: #d0d0d0;
    width: auto;
}
.offer-avantages__icon g,
.offer-avantages__icon path {
    fill: #d0d0d0;
}
.about {
    padding: 80px 0 60px;
}
.about__wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}
.about__img {
    width: 35vw;
    height: 30vw;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.about__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
.about__text h2 {
    text-align: left;
}
.about__text p {
    font-size: 14px;
}
.steps__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.steps__item {
    background: linear-gradient(155deg, #000000 13%, #454545 40%, #0d222d 100%);
    border-radius: 6px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 0;
    overflow: hidden;
}
.steps__num {
    font-size: 37px;
    font-weight: 700;
}
.steps__title {
    font-weight: 700;
    font-size: 20px;
}
.steps__subtitle {
    flex-grow: 1;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 7px;
}
.steps__img {
    display: flex;
    justify-content: end;
    margin-right: -18px;
}
.types {
    padding: 50px 0;
}
.section__title {
    font-size: 33px;
    text-align: center;
    margin: 0;
}
.types__wrapper {
    margin-top: 50px;
}
.types-tab__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.types-tab__item {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 6px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.types-tab__item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.7;
    transition: all 0.4s;
}
.types-tab__item:hover::after {
    opacity: 0.8;
    transition: all 0.4s;
}
.types-tab__title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 22px;
}
.types-tab__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.types-tab__img img {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
    top: 0;
}
.easy-service__types {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.easy-service__item {
    position: relative;
    height: 193px;
    padding: 30px 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(155deg, #000000 13%, #454545 40%, #0d222d 100%);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: block;
}
.easy-service__item:hover {
    opacity: 0.9;
}
.easy-service__name {
    display: inline-block;
    max-width: 192px;
    position: relative;
    z-index: 1;
}
.easy-service__img {
    position: absolute;
    right: 0;
    bottom: 0;
}
.telephone {
    text-decoration: underline;
}
.service-item-gibdd {
    width: 49%;
}
.service-item-spec {
    width: 49%;
}
.service-item-gims {
    width: 100%;
}
.services {
    padding: 50px 0;
}
.services__wrapper {
    margin-top: 60px;
}
.services__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #999ea5;
    padding-bottom: 15px;
    border-bottom: 1px solid #e4e6e9;
}
.services-header__cell:nth-child(1) {
    width: 60px;
    text-align: center;
    flex-shrink: 0;
    margin-right: 17px;
}
.services-header__cell:nth-child(2) {
    width: 100%;
}
.services-header__cell:nth-child(3) {
    width: 200px;
    flex-shrink: 0;
}
.services-header__cell:nth-child(4) {
    width: 200px;
    flex-shrink: 0;
}
.services__item {
    display: flex;
    padding: 20px 0;
    align-items: center;
    border-bottom: 1px solid #e4e6e9;
}
.services-item__num {
    width: 52px;
    text-align: center;
    flex-shrink: 0;
    background-color: #f4f5f8;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    margin-right: 25px;
}
.services-item__name {
    width: 100%;
    font-weight: 700;
}
.services-item__price {
    width: 200px;
    flex-shrink: 0;
    font-weight: 700;
    color: #000000;
}
.services-item__btn {
    width: 200px;
    flex-shrink: 0;
    text-align: center;
}
.countries {
    padding: 50px 0;
}
.regions-page .countries {
    padding: 40px 0;
}
.countries__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    column-gap: 30px;
    row-gap: 10px;
}
.countries-list__btn {
    display: none;
}
.countries__item {
    background: #000000;
    color: #fff;
    padding: 5px 0;
    border-radius: 6px;
}
.countries__item a {
    text-decoration: none;
    width: 100%;
    display: block;
    font-size: 15px;
}
.footer {
    background: linear-gradient(155deg, #000000 13%, #454545 40%, #0d222d 100%);
    padding: 60px 0 0;
}
.footer__wrapper {
    display: flex;
    color: #fff;
    gap: 70px;
    margin-bottom: 40px;
}
.footer__logo {
    flex-grow: 1;
}
.footer-logo__img {
    height: 55px;
}
.footer-logo__description {
    font-size: 13px;
    margin-top: 10px;
    max-width: 415px;
}
.footer__nav {
    display: flex;
    gap: 70px;
}
.footer-contacts__phone {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}
.footer-contacts__worktime {
    font-size: 15px;
    margin-top: 5px;
}
.footer-nav__list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-nav__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.1;
}
.footer-nav__item {
    margin-bottom: 8px;
}
.footer-nav__link {
    text-decoration: none;
    font-size: 14px;
}
.footer__contacts .header-contacts__social {
    margin-top: 10px;
}
.footer__bottom {
    background-color: #303d49;
    color: #fff;
    font-size: 15px;
    padding: 15px 0;
    text-align: center;
}
.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
@media (min-width: 640px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer__copyright,
.footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}
.page__header {
    height: 330px;
    background-image: url(../img/page_header.webp);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.page__header::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.6;
}
.page__header .container {
    z-index: 1;
}
.page__title {
    margin: 0;
    margin-bottom: 20px;
}
.page__main {
    padding: 60px 0;
}
.page__wrapper {
    display: flex;
    gap: 40px;
}
.page__content {
    width: 100%;
}
.page__content h2 {
    margin: 0 0 10px;
}
.page__nav {
    width: 285px;
    flex-shrink: 0;
}
.page-nav__col {
    box-shadow: 0 0 16px -2px #00000029;
    border-radius: 6px;
    margin-bottom: 40px;
}
.page-nav__header {
    height: 55px;
    background-color: #000000;
    color: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
}
.page-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-nav__link {
    padding: 15px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 15px;
    background-image: url(../img/right-arrow.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right 20px center;
}
.faq__title {
    font-size: 35px;
    text-align: center;
}
.faq-container {
    max-width: 1140px;
}
.accordion {
    margin: 40px auto 40px;
}
.accordion .accordion-item {
    border: 1px solid #e1e1e1;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}
.accordion .accordion-item button[aria-expanded="true"] {
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#5c81fa), to(#39a8fe));
    background-image: -webkit-linear-gradient(left, #5c81fa, #39a8fe);
    background-image: -o-linear-gradient(left, #5c81fa, #39a8fe);
    background-image: linear-gradient(to right, #5c81fa, #39a8fe);
    background-repeat: repeat-x;
}
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    color: #000000;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    padding: 17px 60px 13px 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    line-height: 1;
    border-bottom: 0;
}
.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #000000;
}
.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #000000;
    border: 1px solid #000000;
}
.accordion button .accordion-title {
    color: #2f302b;
    font-family: Montserrat, sans-serif;
    font-size: 17px;
    font-weight: 500;
}
.accordion .accordion-item button[aria-expanded="true"] .accordion-title {
    color: #fff;
}
.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 25px;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.accordion button[aria-expanded="true"] {
    color: #000000;
}
.accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
        opacity 200ms linear,
        max-height 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content p {
    font-weight: 300;
    margin: 0;
    padding: 20px 30px;
    font-size: 15px;
}
.thanks-page {
    text-align: center;
}
.popup__wrap {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.popup__wrap.active {
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s;
}
.popup__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: -1;
    opacity: 0.8;
    cursor: pointer;
}
.popup .offer__form {
    padding-top: 50px;
    position: relative;
}
.close__popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    font-weight: 700;
}
.seo {
    padding: 50px 0;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 10px;
    }
    .header__wrapper {
        position: relative;
        z-index: 1;
    }
    .header__logo a {
        font-size: 5vw;
        max-width: 59px;
        overflow: hidden;
    }
    .header__logo p {
        font-size: 2.9vw;
    }
    .header-logo__img {
        height: 35px;
    }
    .header-contacts__row span {
        font-size: 17px;
        white-space: nowrap;
    }
    .header-contacts__info {
        font-size: 13px;
        margin-left: 0;
    }
    .header-contacts__icon {
        display: none;
    }
    .header__action {
        display: none;
    }
    .header-contacts__social {
        display: none;
    }
    .humburger {
        display: block;
        background: unset;
        height: 40px;
        width: 32px;
        flex-shrink: 0;
    }
    .header__nav {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        pointer-events: none;
        left: 0;
    }
    .header__nav.active {
        opacity: 1;
        background: #fff;
        pointer-events: all;
        padding: 80px 20px;
    }
    .header-nav__list {
        flex-direction: column;
        align-items: flex-start;
        font-size: 18px;
        border: 0;
        gap: 10px;
    }
    .header-nav__item {
        flex-direction: column;
        align-items: baseline;
        position: relative;
    }
    .parrent-item::after {
        display: none;
    }
    .parrent-item {
        position: relative;
    }
    .parrent-item > .header-nav__link::after {
        content: "";
        border: 5px solid #fff0;
        border-top: 5px solid #000000;
        margin-top: 3px;
        margin-left: 6px;
        position: absolute;
        left: unset;
        top: 7px;
        right: -1rem;
    }
    .header-nav__link {
        position: relative;
    }
    .submenu {
        max-height: 0;
        transition: max-height 1s;
        overflow: hidden;
    }
    .header-nav__item.active .submenu {
        position: unset;
        padding: 0;
        display: flex;
        flex-direction: column;
        margin-top: 5px;
        margin-bottom: 5px;
        gap: 5px;
        max-height: 400px;
        transition: max-height 1s;
        opacity: 1;
        pointer-events: all;
    }
    .offer {
        padding: 60px 0;
        background-size: cover;
        background-position: bottom right;
    }
    .offer__wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    .offer-text__title {
        font-size: 26px;
        line-height: 1.3;
    }
    .offer-text__title::before {
        width: 60%;
    }
    .offer__form {
        padding: 20px;
    }
    .offer__avantages {
        margin-top: 40px;
    }
    .about {
        padding: 50px 0 25px;
    }
    .about__wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .about__img {
        width: 100%;
        height: 200px;
        order: 1;
    }
    .section__title {
        line-height: 1.3;
        font-size: 26px;
    }
    .types {
        padding: 25px 0;
    }
    .types__wrapper {
        margin-top: 30px;
    }
    .types-tab__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .types-tab__title {
        font-size: 18px;
    }
    .services {
        padding: 25px 0;
    }
    .services__wrapper {
        margin-top: 40px;
    }
    .services-header__cell:nth-child(1) {
        display: none;
    }
    .services-header__cell:nth-child(2) {
        width: 50%;
        flex-shrink: 0;
    }
    .services-header__cell:nth-child(3) {
        width: 100%;
        flex-shrink: unset;
    }
    .services-header__cell:nth-child(4) {
        width: auto;
        font-size: 0;
    }
    .services__item {
        padding: 15px 0;
    }
    .services-item__num {
        display: none;
    }
    .services-item__name {
        width: 50%;
        flex-shrink: 0;
        font-size: 14px;
    }
    .services-item__price {
        width: 100%;
        flex-shrink: unset;
        font-size: 14px;
    }
    .services-item__btn {
        width: 35px;
        font-size: 0;
        height: 47px;
        background-image: url(../img/right-arrow2.svg);
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: center;
    }
    .steps__wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .countries__list ul {
        grid-template-columns: repeat(1, 1fr);
        max-height: 500px;
        overflow: hidden;
        position: relative;
    }
    .countries__list ul::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 200px;
        background: linear-gradient(0deg, #ffffff, #fffffff5, #ffffff00);
        bottom: 0;
    }
    .countries-list__btn {
        display: block;
        text-align: center;
        margin-top: -60px;
        z-index: 1;
        position: relative;
    }
    .footer {
        padding: 25px 0 0;
    }
    .footer__wrapper {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 20px;
    }
    .footer__logo img {
        height: 38px;
    }
    .footer-logo__description {
        font-size: 11px;
    }
    .footer__nav {
        flex-direction: column;
        gap: 30px;
    }
    .footer-nav__title {
        margin-bottom: 10px;
    }
    .footer__contacts {
        text-align: center;
    }
    .page__header {
        height: 180px;
    }
    .page__title {
        font-size: 21px;
    }
    .breadcrumbs {
        font-size: 12px;
    }
    .page__main {
        padding: 40px 0;
    }
    .page__nav {
        display: none;
    }
    .footer__bottom {
        font-size: 12px;
    }
    .page__content h2 {
        font-size: 1.5rem;
    }
    .accordion {
        margin-top: 20px;
    }
    .accordion button .accordion-title {
        line-height: 1.2;
    }
    .faq-container .container {
        padding: 0;
    }
    .regions-page .countries {
        padding-top: 20px;
    }
    .seo {
        padding: 40px 0;
    }
    .main {
        overflow-x: hidden;
    }
}
@media (max-width: 400px) {
    .offer {
        min-height: 590px;
    }
    .easy-service__item {
        width: 100%;
    }
    .services-item__btn {
        font-size: 0 !important;
        align-items: center;
        display: flex !important;
    }
    .services-item__btn:before {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 8px solid currentColor;
        margin-right: 8px;
    }
}
@media (max-width: 350px) {
    .header-logo__img {
        height: 27px;
    }
}
.submenu__item {
    margin-left: 10px;
}
.messenger-widget {
    position: fixed;
    bottom: 3.5rem;
    right: 1.5rem;
    z-index: var(--z-widget);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.625rem;
}
.messenger-widget__btn {
    display: flex;
    align-items: center;
    width: 300px;
    height: 52px;
    color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 10px;
    padding: 0 30px;
}
.messenger-widget__icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-card);
}
.footer__contact--max {
    border: 3px solid;
    border-radius: 100%;
    padding: 2px;
}
:root {
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20bd5a;
    --color-telegram: #229ed9;
    --color-telegram-hover: #1e8ec4;
    --color-max: #4224bd;
    --color-max-hover: #6224bd;
}
.messenger-widget__btn--whatsapp {
    background-color: var(--color-whatsapp);
}
.messenger-widget__btn--whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
}
.messenger-widget__btn--telegram {
    background-color: var(--color-telegram);
}
.messenger-widget__btn--telegram:hover {
    background-color: var(--color-telegram-hover);
}
.messenger-widget__btn--max {
    background-color: var(--color-max);
}
.messenger-widget__btn--max:hover {
    background-color: var(--color-max-hover);
}
@media (max-width: 768px) {
    .messenger-widget {
        bottom: 0;
        left: 0;
        width: 100%;
        gap: 5px;
        z-index: 9999999999999999;
    }
    .messenger-widget__btn {
        width: 100%;
        border-radius: 0;
    }
}
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.popup-overlay--visible {
    opacity: 1;
    visibility: visible;
}
.popup-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.popup {
    position: relative;
    width: 100%;
    max-width: 540px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.popup-overlay--visible .popup {
    transform: scale(1);
}
.popup__close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s,
        color 0.2s;
    padding: 0;
    line-height: 1;
}
.popup__close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.popup__close svg {
    width: 16px;
    height: 16px;
}
.popup-header {
    position: relative;
    background: #1a1a2e;
    padding: 24px 24px 20px;
}
.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.live-badge__dot {
    position: relative;
    width: 10px;
    height: 10px;
}
.live-badge__dot-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #4ade80;
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.live-badge__dot-core {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}
.live-badge__text {
    font-size: 12px;
    font-weight: 500;
    color: #4ade80;
}
@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.offer-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.offer-tag__icon {
    width: 20px;
    height: 20px;
    color: #000000;
}
.offer-tag__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
}
.popup-header__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 8px;
    text-wrap: balance;
}
@media (min-width: 480px) {
    .popup-header__title {
        font-size: 26px;
    }
}
.popup-header__subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px;
}
.price {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
}
.price__old {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}
.price__current {
    font-size: 35px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    background: -webkit-linear-gradient(#000000, #ff5656);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.countdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
}
.countdown__label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 8px;
}
.countdown__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown__value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
@media (min-width: 480px) {
    .countdown__value {
        font-size: 32px;
    }
}
.countdown__unit {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}
.countdown__separator {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}
.popup-body {
    background: #f7f7fa;
    padding: 20px 24px 24px;
}
.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-bottom: 16px;
    justify-content: center;
}
.trust-points__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #444;
}
.trust-points__icon {
    width: 14px;
    height: 14px;
    color: #000000;
    flex-shrink: 0;
}
.phone-form {
    margin-bottom: 12px;
}
.phone-form__field {
    display: flex;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
    margin-bottom: 12px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.phone-form__field:focus-within {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}
.phone-form__icon-wrap {
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #fafafa;
    border-right: 1px solid #eee;
}
.phone-form__icon-wrap svg {
    width: 16px;
    height: 16px;
    color: #999;
}
.phone-form__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 12px;
    font-size: 14px;
    color: #222;
    font-family: inherit;
}
.phone-form__input::placeholder {
    color: #bbb;
}
.btn-submit {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    background: #000000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.25);
    transition:
        background 0.2s,
        box-shadow 0.2s,
        transform 0.15s;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.btn-submit:hover {
    background: #d81b60;
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.3);
}
.btn-submit:active {
    transform: scale(0.98);
}
.btn-submit__chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}
.btn-submit:hover .btn-submit__chevron {
    transform: translateX(2px);
}
.btn-submit__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s;
}
.btn-submit:hover .btn-submit__shine {
    transform: translateX(100%);
}
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.divider__line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
.divider__text {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    white-space: nowrap;
}
.messenger-buttons {
    display: flex;
    gap: 10px;
}
.messenger-buttons__link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition:
        filter 0.2s,
        transform 0.15s;
}
.messenger-buttons__link:active {
    transform: scale(0.98);
}
.messenger-buttons__link--whatsapp {
    background: #25d366;
}
.messenger-buttons__link--whatsapp:hover {
    filter: brightness(0.92);
}
.messenger-buttons__link--telegram {
    background: #2aabee;
}
.messenger-buttons__link--telegram:hover {
    filter: brightness(0.92);
}
.messenger-buttons__icon {
    width: 20px;
    height: 20px;
}
.popup-body__privacy {
    margin-top: 12px;
    text-align: center;
    font-size: 10px;
    line-height: 1.5;
    color: #aaa;
}
.success {
    padding: 16px 0;
    text-align: center;
    display: none;
}
.success--visible {
    display: block;
}
.success__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.success__icon-wrap svg {
    width: 28px;
    height: 28px;
    color: #16a34a;
}
.success__title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
}
.success__text {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
}
.success__btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 12px;
    background: #222;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.success__btn:hover {
    background: #333;
}
.popup-body__form-content {
    display: block;
}
.popup-body__form-content--hidden {
    display: none;
}
@media (max-width: 768px) {
    .popup-overlay {
        align-items: flex-start;
        padding: 0;
        overflow: scroll;
    }
    .popup {
        margin: auto;
        max-height: none;
        border-radius: 0;
    }
}
@media (max-width: 640px) {
    .popup {
        max-width: 100%;
    }
    .popup-header {
        padding: 16px 16px 12px;
    }
    .popup-body {
        padding: 16px;
    }
}
