*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    scrollbar-gutter: stable;
}

body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    font-family: 'Open Sans', Tahoma, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    color: #111;
    background: #fff;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p {
    margin: 0;
}

#wrapper {
    flex: 1 0 auto;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 90px;
}

body.page-home #wrapper {
    padding-top: 0;
}

.eu-container,
.site-header-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    color: #fff;
    background-color: #473c8d;
    transition: background-color 1s;
}

body.page-home .site-header {
    background-color: transparent;
}

body.page-home .site-header.is-scrolled,
body.page-home .site-header.is-open {
    background-color: #473c8d;
}

.site-header-inner {
    display: flex;
    align-items: center;
    height: 90px;
    overflow: visible;
}

.site-logo {
    position: relative;
    z-index: 110;
    display: block;
    flex: 0 0 auto;
    margin-right: 8px;
}

.site-logo img {
    display: block;
    width: 129px;
    height: 31px;
}

.site-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    margin-left: 32px;
}

.site-nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-nav ul a {
    display: block;
    padding: 0 15px;
    font-size: 15px;
    line-height: 31px;
    color: #fff;
}

.site-nav ul a:hover,
.site-nav ul a:focus {
    color: #fe6192;
    text-shadow: 0 0 1px #fe6192, 0 0 1px #fe6192;
}

.lang-switcher {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin-top: 0;
    padding-left: 18px;
    gap: 8px;
}

.lang-switch {
    padding: 0 2px;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.lang-switch.is-current {
    color: #fff;
    font-weight: 700;
    opacity: 1;
    pointer-events: none;
}

.lang-switch:hover,
.lang-switch:focus {
    color: #fe6192;
}

.header-contact {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin-left: auto;
    margin-right: 4px;
    padding-left: 12px;
    gap: 8px;
}

.header-contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    white-space: nowrap;
}

.header-contact-phone {
    font-size: 14px;
    color: #fff;
}

.header-contact-phone:hover,
.header-contact-phone:focus {
    color: #fe6192;
}

.header-contact-hours {
    margin-top: 2px;
    font-size: 12px;
    color: #fff;
}

.header-contact-chats {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: 24px 24px;
    align-items: center;
    gap: 8px;
}

.header-chat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 50%;
    overflow: visible;
}

.header-chat svg {
    display: block;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    overflow: visible;
}

.header-chat-wa {
    background: #25d366;
}

.header-chat-tg {
    background: #2aabee;
}

.header-chat:hover,
.header-chat:focus {
    opacity: 0.85;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 28px;
    height: 28px;
    margin-left: 18px;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
    cursor: pointer;
}

.site-nav-backdrop {
    display: none;
}

.menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.menu-toggle span:nth-child(1) {
    top: calc(50% - 6px);
}

.menu-toggle span:nth-child(2) {
    top: 50%;
}

.menu-toggle span:nth-child(3) {
    top: calc(50% + 6px);
}

.site-header.is-open .menu-toggle span {
    top: 50%;
    left: 50%;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Footer */

.eu-footer {
    flex-shrink: 0;
    color: #222;
    background-color: #f8f9fa;
}

.eu-footer-main {
    padding: 72px 0 82px;
}

.eu-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1.15fr 0.95fr;
    gap: 28px 22px;
    align-items: start;
}

.eu-footer-col {
    min-width: 0;
}

.eu-visually-hidden {
    position: absolute;
    width: 1px;
    max-width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.eu-footer h2 {
    min-height: 27px;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 2.14;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1f3a;
}

.eu-footer a {
    color: #1a1f3a;
}

.eu-footer a:hover,
.eu-footer a:focus {
    color: #fe6192;
}

.eu-footer-blocks {
    margin: 0;
}

.eu-footer-blocks > li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0 10px;
    padding: 14px 0;
    border-bottom: 1px solid #e4e6ea;
}

.eu-footer-blocks > li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.eu-footer-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1px;
}

.eu-footer-item-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1a1f3a;
}

a.eu-footer-item-title {
    color: #1a1f3a;
}

.eu-footer-blocks p {
    margin-top: 5px;
    color: #888;
    font-size: 12px;
    line-height: 1.45;
}

.eu-footer-order,
.eu-footer-order-link,
button.eu-footer-order {
    display: inline-block;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: #fe6192;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}

.eu-footer-order::after,
.eu-footer-order-link::after {
    content: ' →';
}

.eu-footer-order:hover,
.eu-footer-order:focus,
.eu-footer-order-link:hover,
.eu-footer-order-link:focus {
    color: #473c8d;
}

.eu-footer-contacts {
    margin: 0;
}

.eu-footer-contacts > li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0 10px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: #222;
}

.eu-footer-contacts > li:first-child {
    margin-top: 6px;
}

.eu-footer-contact-icon {
    display: flex;
    justify-content: center;
    padding-top: 3px;
}

.eu-footer-contacts span,
.eu-footer-contacts a {
    display: inline;
}

.eu-footer-contacts div > span {
    display: block;
}

.eu-footer-contacts .phone-country,
.eu-footer-contacts .eu-footer-note {
    display: inline;
}

.eu-footer-highlight {
    color: #fe6192;
}

.eu-footer-highlight:hover,
.eu-footer-highlight:focus {
    color: #473c8d;
}

.eu-footer-note {
    display: inline !important;
    margin-left: 4px;
    color: #888;
    font-size: 12px;
}

.phone-country {
    padding-right: 0.5em;
    font-size: 0.8em;
    font-weight: 700;
}

.eu-footer-callback.eu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    max-width: min(300px, 100%);
    height: 45px;
    margin-top: 22px;
    padding: 0 28px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 5px 5px 0;
}

.eu-footer-callback.eu-btn svg {
    display: block;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.eu-footer-callback.eu-btn:focus-visible {
    outline: 2px solid #473c8d;
    outline-offset: 2px;
}

.eu-footer-social {
    display: grid;
    gap: 16px 8px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 16px 0 0;
    list-style: none;
    overflow: visible;
}

.eu-footer-social-chat {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 0;
}

.eu-footer-social-chat .eu-social-link {
    min-height: 44px;
    justify-content: center;
}

.eu-footer-social-chat .eu-social-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-bottom: 0;
}

.eu-footer-social-networks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e4e6ea;
}

.eu-footer-social > li {
    min-width: 0;
    max-width: 100%;
}

.eu-social-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100%;
    color: #222;
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
}

.eu-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    overflow: visible;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.eu-social-icon img {
    display: block;
    width: 40px;
    height: 40px;
    max-width: none;
    object-fit: contain;
}

.eu-footer-social-chat .eu-social-icon img {
    object-position: center;
}

.eu-footer-social-chat .eu-social-link.viber .eu-social-icon img,
.eu-footer-social-chat .eu-social-link.messenger .eu-social-icon img {
    transform: scale(1.08);
}

.eu-social-icon-fa {
    background: #473c8d;
}

.eu-social-icon-fa .fa {
    font-size: 20px;
    line-height: 1;
    color: #fff;
}

.eu-social-link.linkedin .eu-social-icon-fa {
    background: #0a66c2;
}

.eu-social-link.facebook .eu-social-icon-fa {
    background: #1877f2;
}

.eu-social-link.instagram .eu-social-icon-fa {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.eu-social-label:not(.eu-visually-hidden) {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.eu-social-label.eu-visually-hidden {
    position: absolute;
    left: 0;
    width: 1px;
    max-width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
}

.eu-social-link:hover,
.eu-social-link:focus {
    color: #fe6192;
}

.eu-social-link:hover .eu-social-icon,
.eu-social-link:focus .eu-social-icon {
    transform: translateY(-1px);
    opacity: 0.92;
}

.eu-social-link:hover .eu-social-icon-fa .fa,
.eu-social-link:focus .eu-social-icon-fa .fa {
    color: #fff;
}

.eu-social-link:focus-visible {
    outline: none;
}

.eu-social-link:focus-visible .eu-social-icon {
    outline: 2px solid #473c8d;
    outline-offset: 3px;
    border-radius: 50%;
}

.eu-google-reviews {
    display: block;
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
    overflow: hidden;
    text-decoration: none;
}

.eu-google-reviews-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.eu-google-reviews:hover,
.eu-google-reviews:focus {
    opacity: 0.92;
}

.eu-google-reviews:focus-visible {
    outline: 2px solid #473c8d;
    outline-offset: 2px;
    border-radius: 4px;
}

.eu-footer-legal {
    padding-top: 60px;
    text-align: center;
    color: #222;
}

.eu-footer-copyright {
    font-size: 13px;
    line-height: 1.5;
    color: #222;
}

.eu-footer-disclaimer {
    max-width: 820px;
    margin: 10px auto 0;
    font-size: 13px;
    line-height: 1.5;
    color: #222;
    opacity: 0.85;
    overflow-wrap: break-word;
}

.eu-btn {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    height: 45px;
    margin-top: 20px;
    padding: 0 28px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: #fe6192;
    background: linear-gradient(45deg, #fe6192 25%, #ff8db1 50%, #fe6192 75%, #fe6192 100%);
    background-size: 400% 200%;
    background-position: right bottom;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 5px 5px 0;
    font-size: 12px;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-position 0.4s ease-out, opacity 0.2s ease, transform 0.15s ease;
}

.eu-btn:hover,
.eu-btn:focus {
    color: #fff;
    background-position: left bottom;
}

.eu-btn:active {
    transform: translateY(1px);
}

.eu-btn:disabled,
.eu-btn.is-loading {
    opacity: 0.65;
    cursor: progress;
    pointer-events: none;
    transform: none;
    background-position: right bottom;
}

@media screen and (max-width: 1023px) {
    .eu-container,
    .site-header-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 40px;
        padding-right: 40px;
    }

    html,
    body,
    #wrapper,
    .site-header,
    #hero {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .site-nav {
        margin-left: 24px;
        min-width: 0;
    }

    .site-nav ul a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }

    .header-contact-phone {
        font-size: 13px;
    }

    .header-contact-hours {
        font-size: 11px;
    }

    .eu-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }

    .menu-toggle {
        display: block;
    }

    body.page-home .site-header,
    body.page-home .site-header.is-scrolled,
    body.page-home .site-header.is-open {
        background-color: #473c8d;
    }

    .site-header.is-open {
        z-index: 120;
    }

    .site-header-inner {
        position: relative;
        z-index: 130;
        height: 68px;
    }

    .site-nav-backdrop {
        display: none;
        position: fixed;
        top: 68px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 105;
        margin: 0;
        padding: 0;
        border: 0;
        background: rgba(17, 17, 17, 0.45);
        cursor: pointer;
    }

    .site-header.is-open .site-nav-backdrop {
        display: block;
    }

    .site-nav {
        display: none;
        position: fixed;
        top: 68px;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 106;
        flex: none;
        flex-grow: 0;
        flex-shrink: 0;
        box-sizing: border-box;
        width: min(260px, calc(100% - 72px));
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 12px 20px 24px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: #473c8d;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
        flex-direction: column;
        align-items: stretch;
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

    body.menu-open .price-calc-toolbar,
    body.menu-open .price-calc-toolbar.is-price-toolbar-hidden {
        z-index: 1;
        pointer-events: none;
    }

    .site-nav ul {
        display: block;
        margin-top: 0;
    }

    .site-nav li {
        border-bottom: 1px solid #7568c5;
    }

    .site-nav li:last-child {
        border-bottom: 0;
    }

    .site-nav ul a {
        padding: 16px 0;
        font-size: 20px;
    }

    .header-contact {
        margin: 28px 0 0;
        padding: 20px 0 0;
        border-top: 1px solid #7568c5;
        justify-content: flex-start;
    }

    .header-contact-text {
        align-items: flex-start;
        white-space: normal;
    }

    .header-contact-phone {
        font-size: 16px;
    }

    .header-contact-hours {
        font-size: 14px;
    }

    .header-contact-chats {
        grid-template-columns: 32px 32px;
    }

    .header-chat {
        width: 32px;
        min-width: 32px;
        height: 32px;
        overflow: visible;
    }

    .header-chat svg {
        flex: 0 0 18px;
        width: 18px;
        height: 18px;
        overflow: visible;
    }

    .lang-switcher {
        margin-left: auto;
        position: relative;
        z-index: 110;
        flex-shrink: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .menu-toggle {
        z-index: 110;
        flex-shrink: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .site-header.is-scrolled .lang-switcher,
    .site-header.is-scrolled .menu-toggle,
    .site-header.is-scrolled .site-logo {
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

/* Mobile */

@media screen and (max-width: 767px) {
    .eu-container,
    .site-header-inner {
        padding-left: 29px;
        padding-right: 29px;
    }

    .eu-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .eu-footer-social-chat {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px 4px;
    }

    .eu-footer-social-networks {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .eu-footer-legal {
        padding-top: 48px;
    }
}

@media screen and (max-width: 600px) {
    .eu-container,
    .site-header-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .price-calc-toolbar {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Shared homepage */

#services,
#benefits,
#pricing,
#stats,
#about,
#team,
#reviews,
#our-values,
#contacts {
    scroll-margin-top: 90px;
}

.pink-marker {
    color: #fe6192;
}

.eu-section {
    padding: 80px 0;
    background: #fff;
}

.eu-section-grey {
    background-color: #f9f9f9;
}

.eu-section-title {
    position: relative;
    padding-bottom: 50px;
    font-size: 35px;
    font-weight: 300;
    line-height: 1.2em;
    color: #111;
}

.eu-link-arrow,
button.eu-link-arrow {
    display: inline;
    padding: 0;
    border: 0;
    background: none;
    color: #473c8d;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
}

.eu-link-arrow::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-left: 9px;
    background: url(/static/img/arrow-button.svg) no-repeat center;
    vertical-align: middle;
}

.eu-link-arrow:hover,
.eu-link-arrow:focus {
    color: #fe6192;
}

/* Hero */

#hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    color: #fff;
    background-color: #6b629b;
    background-image: url(/static/img/image-hero.svg);
    background-image: url(/static/img/image-hero_v4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding-top: 170px;
}

.hero-title {
    max-width: 78%;
    padding-right: 4%;
    font-size: 54px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
}

.hero-descr {
    margin-top: 15px;
    max-width: 78%;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}

.hero-actions {
    margin-top: 57px;
}

.hero-actions .eu-btn {
    width: auto;
    max-width: none;
    margin-top: 0;
    min-width: 220px;
}

/* Services */

#services {
    padding: 90px 0 80px;
}

.services-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.services-columns > li {
    width: 270px;
    min-width: 0;
    flex: 1 1 270px;
}

.services-title {
    display: flex;
    align-items: flex-start;
    height: 60px;
    overflow: hidden;
}

.services-title img {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    margin-right: 30px;
}

.services-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 30px;
    border-radius: 4px;
    background: #fe6192;
}

.services-icon img {
    width: 26px;
    height: 26px;
    margin-right: 0;
}

.services-icon.is-dark img {
    filter: brightness(0) invert(1);
}

.services-title span {
    color: #111;
    font-size: 15px;
    letter-spacing: 0.7px;
    line-height: 18px;
    text-transform: uppercase;
}

.services-text {
    margin-top: 24px;
    min-height: 140px;
    color: #666;
    font-size: 13px;
    line-height: 1.77;
}

.services-links {
    margin-top: 30px;
}

.services-links li {
    margin-top: 20px;
}

.services-links li:first-child {
    margin-top: 0;
}

/* Benefits */

#benefits {
    background: #f9f9f9;
}

#benefits .advantages-list {
    display: flex;
    flex-direction: column;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: advantages;
}

#benefits .advantages-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 22px 28px 22px 24px;
    background: #fff;
    box-shadow: 0 6px 14px 0 rgba(212, 212, 212, 0.3);
}

#benefits .advantages-item + .advantages-item {
    margin-top: 6px;
}

#benefits .advantages-item::before {
    box-sizing: border-box;
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 41px;
    min-width: 54px;
    margin-right: 24px;
    border: 2px solid #ccc;
    border-radius: 8px;
    color: #ccc;
    font-family: 'Open Sans', Tahoma, Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    counter-increment: advantages;
    content: '0' counter(advantages);
}

#benefits .advantage-name,
#benefits .advantage-description {
    flex: 0 0 calc(50% - 39px);
    max-width: calc(50% - 39px);
}

#benefits .advantage-name {
    margin: 0;
    padding-right: 20px;
    color: #666;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.4;
}

#benefits .advantage-name b {
    color: #fe6192;
}

#benefits .advantage-description {
    color: #777;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.5;
}

/* Pricing */

#pricing {
    padding: 88px 0 100px;
    overflow: visible;
}

.price-calc-sticky-root {
    overflow: visible;
}

.price-calc-toolbar {
    overflow: hidden;
}

.price-calc-hide-sentinel {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.price-calc-controls[hidden] {
    display: none !important;
}

.price-group-switch {
    display: inline-flex;
    margin: 0 0 36px;
    overflow: hidden;
    background: #fff;
    border-radius: 100px;
}

.price-group-tab {
    height: 45px;
    padding: 0 32px;
    border: 0;
    background: transparent;
    color: #fe6192;
    font: inherit;
    font-size: 15px;
    line-height: 45px;
    cursor: pointer;
    border-radius: 100px;
}

.price-group-tab[aria-selected="true"] {
    background: #473c8d;
    color: #fff;
}

.price-group-panel[hidden] {
    display: none;
}

.price-calc-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 16px 85px;
    margin: 0;
}

.price-calc-stepper {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 22px;
}

.price-calc-stepper label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.18;
    text-align: center;
    text-transform: uppercase;
}

.price-calc-btn {
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fe6192;
    color: #fff;
    font: inherit;
    font-size: 24px;
    line-height: 36px;
    cursor: pointer;
}

.price-calc-btn:hover,
.price-calc-btn:focus {
    background: #ff8db1;
    outline: none;
}

.price-calc-btn:focus-visible {
    outline: 2px solid #473c8d;
    outline-offset: 2px;
}

.price-calc-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.price-calc-value {
    width: 105px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #666;
    font: inherit;
    font-size: 30px;
    letter-spacing: 2.3px;
    line-height: 36px;
    text-align: center;
}

.price-cards-wrap {
    margin-top: 50px;
    padding-top: 18px;
}

.price-cards {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-card {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    width: auto;
    max-width: none;
    min-height: 735px;
    min-width: 0;
    margin: 0;
    padding: 93px 30px 82px;
    border: 0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 18px 0 rgba(212, 212, 212, 0.36);
}

.price-card.is-popular {
    z-index: 1;
}

.price-card-tip {
    position: absolute;
    top: -14px;
    left: 50%;
    width: 170px;
    margin-left: -85px;
    background-color: #50be9a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-4deg);
}

.price-card-name {
    position: absolute;
    top: 26px;
    left: 0;
    width: 100%;
    height: 27px;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 27px;
    text-align: center;
    text-transform: uppercase;
}

.price-card-amount {
    color: #473c8d;
    font-size: 13px;
    text-align: center;
}

.price-card.is-popular .price-card-amount {
    color: #50be9a;
}

.price-card-total {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.price-card-total-label {
    margin-bottom: 6px;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.price-card.is-popular .price-card-total-label {
    color: #4a8f78;
}

.price-card-value {
    margin-bottom: 5px;
    font-size: 50px;
    line-height: 0.76;
}

.price-card-period {
    line-height: 2.92;
}

.price-card-list {
    flex: 1 1 auto;
    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.price-card-list li {
    margin-top: 8px;
    padding-left: 28px;
    padding-right: 16px;
    background: url(/static/img/check-purple.svg) no-repeat left 4px;
    color: #111;
    font-size: 13px;
    line-height: 1.38;
}

.price-card-list li:first-child {
    margin-top: 0;
}

.price-card.is-popular .price-card-list li {
    background-image: url(/static/img/check-green.svg);
}

.price-card .eu-btn {
    position: absolute;
    right: 30px;
    bottom: 26px;
    left: 30px;
    width: auto;
    max-width: none;
    margin-top: 0;
    letter-spacing: 0.6px;
}

.price-note {
    margin-top: 0;
    padding-top: 40px;
    color: #666;
    font-size: 13px;
    line-height: 1.54;
    text-align: center;
}

.price-calc-month {
    flex: 1 1 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    padding: 0 8px;
    border: 0;
    background: none;
    color: #fe6192;
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
}

.price-calc-month:hover,
.price-calc-month:focus {
    text-decoration: none;
}

.price-calc-month:focus-visible {
    outline: 2px solid #473c8d;
    outline-offset: 2px;
}

/* Stats */

#stats {
    padding: 88px 0 80px;
}

.stats-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
}

.stats-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 20px;
}

.stats-item + .stats-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 1px;
    height: calc(100% - 16px);
    background: #ccc;
}

.stats-item img {
    display: block;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    padding: 16px;
    border-radius: 5px;
    background: #fe6192;
}

.stats-number {
    margin-top: 16px;
    max-width: 100%;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.stats-text {
    margin: 10px 2.5em 0;
    font-size: 20px;
    line-height: 1.3em;
    color: #555;
}

/* Team / reviews carousel */

.eu-carousel {
    position: relative;
}

.team-track,
.reviews-track {
    display: flex;
    scrollbar-width: none;
}

.team-slider-wrap {
    position: relative;
}

.team-viewport {
    width: 100%;
    overflow: hidden;
}

.team-track {
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 70px;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s ease;
}

.reviews-track {
    gap: 149px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.team-track::-webkit-scrollbar,
.reviews-track::-webkit-scrollbar {
    display: none;
}

.team-card,
.review-card {
    flex: 0 0 auto;
    flex-shrink: 0;
}

.review-card {
    scroll-snap-align: start;
}

.team-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
}

.team-avatar {
    text-align: center;
}

.team-avatar img {
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 120px;
    object-fit: cover;
}

.team-name {
    margin-top: 19px;
    height: 38px;
    color: #111;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
}

.team-role {
    height: 20px;
    color: #777;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
}

.team-info {
    margin-top: 20px;
    min-height: 135px;
    color: #333;
    font-size: 13px;
    line-height: 1.77;
    text-align: center;
    width: 100%;
    flex: 1 1 auto;
}

.ask-question-btn-wrap {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.team-card .eu-btn {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-top: 0;
    padding-left: 28px;
    padding-right: 28px;
    white-space: nowrap;
}

.team-fallback + .eu-btn {
    margin-top: 20px;
    width: auto;
}

.team-fallback {
    margin-bottom: 8px;
    color: #555;
    font-size: 18px;
}

.team-fallback-note {
    margin-bottom: 24px;
    color: #777;
    font-size: 15px;
}

section#about {
    padding: 50px 0 70px;
}

section#about .eu-container > .eu-btn,
.team-fallback-note + .eu-btn {
    width: auto;
}

.eu-scroll-anchor {
    height: 0;
    overflow: hidden;
}

#reviews {
    padding: 65px 0 45px;
}

#reviews .eu-carousel {
    padding: 0;
    overflow: visible;
}

.review-card {
    box-sizing: border-box;
    width: 390px;
    max-width: 390px;
    flex: 0 0 390px;
    min-width: 0;
    overflow: hidden;
}

.review-head {
    display: flex;
    align-items: center;
}

.review-avatar {
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 75px;
    flex: 0 0 75px;
}

.review-avatar img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.review-head > div:last-child {
    padding-left: 30px;
}

.review-name {
    height: 38px;
    color: #111;
    font-size: 18px;
    line-height: 1.9;
}

.review-role {
    margin-top: 1px;
    color: #666;
    font-size: 13px;
    line-height: 1.54;
}

.review-text {
    margin-top: 25px;
    color: #555;
    font-size: 13px;
    line-height: 1.77;
}

/* Our values */

#our-values .our-values-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px 20px;
    align-items: stretch;
}

#our-values .box {
    display: flex;
    min-height: 264px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}

#our-values .inner-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 28px 30px 20px;
}

#our-values .image-list-box {
    flex: 0 0 auto;
    margin: 0 0 18px;
    padding: 0;
    line-height: 0;
}

#our-values .image-list-box img {
    display: block;
    width: 50px;
    max-width: 50px;
    height: 50px;
    border: 0;
}

#our-values .item-title {
    margin-bottom: 7px;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

#our-values .item-short-text {
    margin-top: 5px;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}

#our-values .box:first-child .item-short-text {
    letter-spacing: -0.02em;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    padding: 0;
    border: 0;
    background: transparent no-repeat center;
    cursor: pointer;
}

.carousel-btn.prev {
    left: -39px;
    background-image: url(/static/img/arrow-l.svg);
}

.carousel-btn.next {
    right: -39px;
    background-image: url(/static/img/arrow-r.svg);
}

.carousel-btn.prev:hover {
    background-image: url(/static/img/arrow-l-hover.svg);
}

.carousel-btn.next:hover {
    background-image: url(/static/img/arrow-r-hover.svg);
}

.carousel-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.carousel-btn.prev:disabled:hover {
    background-image: url(/static/img/arrow-l.svg);
}

.carousel-btn.next:disabled:hover {
    background-image: url(/static/img/arrow-r.svg);
}

/* Contacts */

.eu-contacts {
    padding: 87px 0;
    background: #473c8d;
}

.eu-contacts-box {
    max-width: 100%;
    padding: 52px 55px;
    border-radius: 5px;
    background: #fff;
}

.eu-contacts-box .eu-section-title {
    padding-bottom: 0;
    font-size: 35px;
}

.eu-contacts-lead {
    margin-top: 14px;
    max-width: 520px;
    color: #555;
    font-size: 15px;
    line-height: 1.47;
}

.eu-feedback-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-areas:
        "copy fields"
        "submit fields";
    column-gap: 40px;
    align-items: start;
}

.eu-feedback-copy {
    grid-area: copy;
}

.eu-feedback-fields {
    grid-area: fields;
    width: 100%;
    max-width: 320px;
    margin-top: 12px;
}

.eu-feedback-submit {
    grid-area: submit;
    width: 210px;
    margin-top: 20px;
}

.eu-feedback-submit .eu-btn {
    width: 100%;
    max-width: none;
    margin-top: 0;
}

.eu-feedback-field {
    display: block;
    margin-bottom: 12px;
}

.eu-feedback-field input,
.eu-feedback-field textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #777;
    font: inherit;
    font-size: 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.eu-feedback-field textarea {
    height: 120px;
    resize: none;
}

.eu-feedback-field input:focus,
.eu-feedback-field textarea:focus {
    outline: 0;
    border-color: #fe6192;
    box-shadow: 0 0 0 3px rgba(254, 97, 146, 0.16);
}

.eu-feedback-field.is-invalid input,
.eu-feedback-field.is-invalid textarea,
.eu-feedback-agree.is-invalid input {
    border-color: #d0021b;
}

.eu-feedback-agree {
    display: block;
    position: relative;
    margin-top: 5px;
    padding-left: 1.5em;
    color: #555;
    font-size: 13px;
    line-height: 1.4;
}

.eu-feedback-agree input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    margin: 0;
    transform: scale(1.2);
}

.eu-feedback-agree a {
    color: #fe6192;
}

.eu-feedback-error,
.eu-feedback-field-error {
    display: block;
    margin-top: 6px;
    color: #ed0216;
    font-size: 12px;
}

.eu-feedback-success {
    display: block;
    margin-top: 8px;
    color: #fe6192;
    font-size: 16px;
}

.eu-feedback-error:not([hidden]),
.eu-feedback-field-error:not([hidden]),
.eu-feedback-success:not([hidden]) {
    animation: eu-fade-in 0.2s ease;
}

.eu-feedback-error[hidden],
.eu-feedback-success[hidden],
.eu-feedback-field-error[hidden] {
    display: none;
}

.eu-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.eu-recaptcha-notice {
    margin: 10px 0 0;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
}

.eu-recaptcha-notice a {
    color: #fe6192;
}

/* Homepage responsive */

@media screen and (max-width: 1023px) {
    .hero-title {
        font-size: 46px;
        max-width: 100%;
        padding-right: 0;
    }

    .hero-descr {
        font-size: 17px;
        max-width: 100%;
    }

    .hero-inner {
        padding-top: 140px;
    }

    .price-calc-controls {
        gap: 28px 20px;
    }

    .price-cards {
        gap: 16px;
    }

    .price-card {
        padding: 60px 18px 82px;
    }

    .price-card .eu-btn {
        right: 18px;
        left: 18px;
    }

    .stats-text {
        margin-left: 1em;
        margin-right: 1em;
        font-size: 18px;
    }

    .carousel-btn.prev {
        left: 0;
    }

    .carousel-btn.next {
        right: 0;
    }

    #about .carousel-btn.prev {
        left: -39px;
    }

    #about .carousel-btn.next {
        right: -39px;
    }

    #reviews .eu-carousel {
        padding: 0 36px;
    }

    #our-values .our-values-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    body.page-home .site-header {
        background-color: #473c8d;
    }

    body.page-home #wrapper {
        padding-top: 0;
    }

    #wrapper {
        padding-top: 68px;
    }

    #services,
    #benefits,
    #pricing,
    #stats,
    #about,
    #team,
    #reviews,
    #our-values,
    #contacts {
        scroll-margin-top: 68px;
    }

    .site-header,
    .site-header.is-scrolled,
    .site-header.is-open {
        top: 0;
        transform: none;
    }

    .site-header-inner {
        height: 68px;
    }

    .site-nav {
        padding: 12px 20px 24px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        margin-left: 10px;
    }

    .menu-toggle span:nth-child(1) {
        top: calc(50% - 7px);
    }

    .menu-toggle span:nth-child(2) {
        top: 50%;
    }

    .menu-toggle span:nth-child(3) {
        top: calc(50% + 7px);
    }

    .eu-section-title {
        font-size: 28px;
        padding-bottom: 24px;
    }

    .eu-section {
        padding: 56px 0;
    }

    #hero {
        height: auto;
        min-height: 0;
        background-image: url(/static/img/image-hero-mobile.jpg);
    }

    .hero-inner {
        padding-top: calc(68px + 48px);
        padding-bottom: 48px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-actions {
        margin-top: 32px;
    }

    .hero-actions .eu-btn {
        width: 100%;
        height: 60px;
        font-size: 15px;
        line-height: 60px;
    }

    #services {
        padding: 56px 0 48px;
    }

    .services-columns {
        flex-direction: column;
        gap: 28px;
    }

    .services-columns > li {
        width: 100%;
    }

    .services-text {
        min-height: 0;
        margin-top: 16px;
    }

    .services-links {
        margin-top: 18px;
    }

    .services-links li {
        margin-top: 14px;
    }

    .services-links li:first-child {
        margin-top: 0;
    }

    #our-values .our-values-section {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    #our-values .box {
        min-height: 0;
    }

    #our-values .inner-item {
        padding: 24px 22px 20px;
    }

    .price-group-switch {
        margin-bottom: 12px;
    }

    .price-group-tab {
        padding: 0 18px;
        font-size: 14px;
    }

    #pricing {
        padding: 48px 0 52px;
        overflow: visible;
    }

    .price-calc-toolbar {
        position: sticky;
        top: 68px;
        z-index: 80;
        isolation: isolate;
        margin: 0 -29px 0;
        padding: 6px 29px 6px;
        overflow: hidden;
        background: #f9f9f9;
        box-shadow: 0 8px 12px -8px rgba(71, 60, 141, 0.2);
        transform: none;
    }

    .price-calc-toolbar.is-price-toolbar-hidden {
        position: relative;
        top: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: none;
    }

    .price-calc-controls {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
        gap: 4px 8px;
    }

    .price-calc-stepper {
        flex: 1 1 calc(50% - 4px);
        max-width: calc(50% - 4px);
        justify-content: center;
        padding-top: 14px;
        min-width: 0;
    }

    .price-calc-stepper label {
        letter-spacing: 0.4px;
        white-space: nowrap;
    }

    .price-calc-btn {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        font-size: 26px;
        line-height: 44px;
    }

    .price-calc-value {
        width: 44px;
        min-width: 44px;
        height: 44px;
        font-size: 22px;
        letter-spacing: 0.5px;
        line-height: 44px;
    }

    .price-calc-month {
        flex: 1 1 100%;
        min-height: 44px;
        margin-top: 0;
        padding: 0 4px;
        font-size: 12px;
        line-height: 1.25;
    }

    .price-cards-wrap {
        margin-top: 16px;
        padding-top: 0;
    }

    .price-cards {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 28px;
    }

    .price-card {
        flex: none;
        width: 100%;
        max-width: none;
        min-height: 0;
        padding: 58px 22px 28px;
    }

    .price-card-total {
        margin-top: 0;
        padding-top: 0;
    }

    .price-card-value {
        font-size: 44px;
    }

    .price-card-period {
        line-height: 2.2;
    }

    .price-card-list {
        margin-top: 10px;
    }

    .price-card-list li {
        margin-top: 6px;
        font-size: 14px;
    }

    .price-card .eu-btn {
        position: static;
        display: block;
        width: 100%;
        margin-top: 24px;
        margin-right: 0;
        margin-left: 0;
    }

    .price-note {
        padding-top: 24px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 0;
    }

    .stats-item {
        padding: 0 12px;
    }

    .stats-item + .stats-item {
        padding-top: 56px;
    }

    .stats-item + .stats-item::before {
        top: 28px;
        left: 50%;
        width: 120px;
        height: 1px;
        margin-left: -60px;
        background: #ccc;
    }

    .stats-number {
        margin-top: 16px;
        font-size: 22px;
    }

    .stats-text {
        margin: 12px auto 0;
        max-width: 16em;
        font-size: 16px;
        line-height: 1.35;
    }

    section#about {
        padding: 44px 0 24px;
    }

    #stats {
        padding: 64px 0 56px;
    }

    #about .eu-carousel {
        padding: 0 20px;
    }

    #about .carousel-btn.prev {
        left: 0;
    }

    #about .carousel-btn.next {
        right: 0;
    }

    .team-info {
        min-height: 0;
        margin-top: 16px;
    }

    .team-name {
        margin-top: 14px;
    }

    .team-card .eu-btn {
        padding-left: 17px;
        padding-right: 17px;
    }

    .reviews-track {
        gap: 0;
    }

    .review-card {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .eu-footer-main {
        padding: 56px 0 64px;
    }

    .eu-footer-callback.eu-btn {
        display: flex;
        width: 100%;
        max-width: none;
        height: 48px;
    }

    .eu-google-reviews {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }

    .eu-contacts-box {
        padding: 32px 24px;
    }

    .eu-feedback-form {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "fields"
            "submit";
    }

    .eu-feedback-fields {
        max-width: none;
        margin-top: 20px;
    }

    .eu-feedback-submit {
        width: 100%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 600px) {
    .price-calc-toolbar {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 640px) {
    #benefits .advantages-item {
        flex-wrap: wrap;
        padding: 18px 16px;
    }

    #benefits .advantages-item::before {
        margin-right: 14px;
    }

    #benefits .advantage-name {
        flex: 1 1 0;
        max-width: none;
        padding-right: 0;
    }

    #benefits .advantage-description {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 8px;
        padding-left: 68px;
    }
}

@media screen and (max-width: 440px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
}

.eu-static-page {
    min-height: 40vh;
    padding-bottom: 80px;
}

.eu-static-page .eu-section-title {
    padding-bottom: 24px;
}

.eu-privacy-content {
    max-width: 860px;
    color: #111;
    font-size: 15px;
    line-height: 1.53;
}

.eu-privacy-content h2 {
    margin: 32px 0 16px;
    font-size: 22px;
    font-weight: 700;
}

.eu-privacy-content h3 {
    margin: 24px 0 12px;
    font-size: 18px;
    font-weight: 700;
}

.eu-privacy-content p {
    margin: 0 0 16px;
}

.eu-privacy-content ul {
    margin: 0 0 16px 1.2em;
    padding: 0;
}

.eu-privacy-content li {
    margin-bottom: 8px;
}

.eu-privacy-content a {
    color: #fe6192;
}

.eu-404 {
    display: flex;
    align-items: center;
    min-height: 50vh;
    padding: 60px 20px 80px;
    text-align: center;
}

.eu-404-code {
    margin-bottom: 8px;
    color: #fe6192;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.eu-404 h1 {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
}

.eu-404-text {
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
}

.eu-404 .eu-btn {
    width: auto;
}

.eu-success {
    display: flex;
    align-items: center;
    min-height: 50vh;
    padding: 60px 20px 80px;
    text-align: center;
}

.eu-success-title {
    position: relative;
    margin-bottom: 12px;
    padding-top: 90px;
    font-size: 36px;
    font-weight: 700;
}

.eu-success-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 84px;
    height: 75px;
    margin-left: -42px;
    background: url(/static/img/check-green.svg) center / contain no-repeat;
}

.eu-success-text {
    max-width: 640px;
    margin: 0 auto 8px;
    color: #555;
    font-size: 16px;
    line-height: 1.47;
}

.eu-success .eu-btn {
    width: auto;
    margin-top: 32px;
}

@media screen and (max-width: 440px) {
    .eu-success-title {
        padding-top: 80px;
        font-size: 28px;
    }
}

body.eu-order-open {
    overflow: hidden;
}

.eu-order-modal[hidden] {
    display: none;
}

.eu-order-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.eu-order-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.eu-order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.45);
    transition: opacity 0.22s ease;
}

.eu-order-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    padding: 26px 40px 40px;
    overflow: hidden;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(8px);
    transition: transform 0.22s ease;
}

.eu-order-modal.is-open .eu-order-modal-dialog {
    transform: none;
}

.eu-order-modal-header,
.eu-order-modal-body,
.eu-order-modal-footer {
    padding: 0;
}

.eu-order-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 28px;
}

.eu-order-modal-title {
    margin: 0;
    color: #111;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.25;
}

.eu-order-close {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 9px;
    padding: 0;
    border: 0;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23b3b3b3' d='M14 1.4L12.6 0 7 5.6 1.4 0 0 1.4 5.6 7 0 12.6 1.4 14 7 8.4 12.6 14 14 12.6 8.4 7z'/%3E%3C/svg%3E") center no-repeat;
    cursor: pointer;
}

.eu-order-close:hover,
.eu-order-close:focus {
    opacity: 0.7;
}

.eu-order-field {
    display: block;
    margin-bottom: 12px;
}

.eu-order-field input,
.eu-order-field textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
    color: #555;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eu-order-field textarea {
    height: 120px;
    min-height: 120px;
    resize: vertical;
}

.eu-order-field input::placeholder,
.eu-order-field textarea::placeholder {
    color: #888;
}

.eu-order-field input:focus,
.eu-order-field textarea:focus {
    outline: 0;
    border-color: #fe6192;
    box-shadow: 0 0 0 3px rgba(254, 97, 146, 0.16);
}

.eu-order-field.is-invalid input,
.eu-order-field.is-invalid textarea,
.eu-order-agree.is-invalid input {
    border-color: #d0021b;
}

.eu-order-field-error {
    display: block;
    margin-top: 6px;
    color: #d0021b;
    font-size: 12px;
}

.eu-order-field-error:not([hidden]) {
    animation: eu-fade-in 0.2s ease;
}

.eu-order-field-error[hidden] {
    display: none;
}

.eu-order-agree {
    display: block;
    position: relative;
    margin: 4px 0 0;
    padding-left: 1.5em;
    color: #111;
    font-size: 13px;
    line-height: 1.4;
}

.eu-order-agree input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    margin: 0;
}

.eu-order-agree a {
    color: #fe6192;
}

.eu-order-agree a:hover,
.eu-order-agree a:focus {
    color: #fe6192;
}

.eu-order-modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    padding-top: 30px;
}

.eu-order-cancel {
    height: 45px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #fe6192;
    font: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.eu-order-cancel:hover,
.eu-order-cancel:focus {
    color: #ff8db1;
}

.eu-order-modal-footer .eu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    height: 45px;
    margin-top: 0;
    padding: 0 28px;
    line-height: 1;
}

@media screen and (max-width: 600px) {
    .eu-order-modal {
        padding: 16px 12px;
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .eu-order-modal-dialog {
        margin: 12px auto;
        padding: 22px 18px 24px;
    }

    .eu-order-modal-title {
        font-size: 22px;
    }
}

.eu-toast {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-sizing: border-box;
    width: 360px;
    max-width: calc(100% - 32px);
    padding: 14px 16px;
    background: #fff5f6;
    color: #d0021b;
    border: 1px solid #d0021b;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}

.eu-toast[hidden] {
    display: none;
}

.eu-toast-message {
    margin: 0;
    flex: 1 1 auto;
}

.eu-toast-close {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    padding: 0;
    border: 0;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23d0021b' d='M14 1.4L12.6 0 7 5.6 1.4 0 0 1.4 5.6 7 0 12.6 1.4 14 7 8.4 12.6 14 14 12.6 8.4 7z'/%3E%3C/svg%3E") center no-repeat;
    cursor: pointer;
}

.eu-toast-close:hover,
.eu-toast-close:focus {
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .eu-toast {
        top: max(12px, env(safe-area-inset-top, 0px));
        right: max(16px, env(safe-area-inset-right, 0px));
        left: max(16px, env(safe-area-inset-left, 0px));
        width: auto;
        max-width: none;
        margin: 0 auto;
    }
}

.eu-form-loading-host {
    position: relative;
}

.eu-form-loading {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
    margin: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.86);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.eu-form-loading.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.eu-form-loading[hidden] {
    display: none;
}

.eu-form-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(71, 60, 141, 0.18);
    border-top-color: #fe6192;
    border-radius: 50%;
    animation: eu-form-spin 0.7s linear infinite;
}

.eu-form-loading-text {
    margin: 0;
    color: #473c8d;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.eu-form-loading-text:focus {
    outline: none;
}

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

@keyframes eu-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eu-form-loading,
    .eu-order-modal,
    .eu-order-modal-dialog,
    .eu-order-modal-backdrop,
    .eu-btn,
    .eu-feedback-field input,
    .eu-feedback-field textarea,
    .eu-order-field input,
    .eu-order-field textarea {
        transition: none;
    }

    .eu-form-loading-spinner {
        animation: none;
        border-top-color: #fe6192;
    }

    .eu-feedback-error:not([hidden]),
    .eu-feedback-field-error:not([hidden]),
    .eu-feedback-success:not([hidden]),
    .eu-order-field-error:not([hidden]) {
        animation: none;
    }

    .eu-order-modal.is-open .eu-order-modal-dialog {
        transform: none;
    }
}
