:root {
    --bg: #f6f7fb;
    --ink: #0f172a;
    --muted: #667085;
    --line: #e5e7eb;
    --card: #ffffff;
    --brand: #1a7af8;
    --brand-2: #3cc1ff;
    --accent: #ffb547;
    --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font: 16px/1.5 "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    color: var(--ink);
}

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

h1 {
    text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-weight: 700;
    margin: 0;
}

article {
    padding: 60px 0;
}

input,
textarea,
button {
    outline: none;
    font-family: inherit;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.row {
    display: flex;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #1b62d4;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    gap: 20px;
    background: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(0, 17, 30, 0.1);
    border-radius: 10px;
    z-index: 5;
}

@media screen and (min-width: 768px) {
    .topbar {
        position: fixed;
        left: 50%;
        right: auto;
        width: min(1100px, calc(100vw - 30px));
        transform: translateX(-50%) translateY(0);
        transition: transform .25s ease, opacity .25s ease;
        z-index: 60;
    }

    .topbar.topbar-hidden {
        transform: translateX(-50%) translateY(-140%);
        opacity: 0;
    }
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 130px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.logo span {
    color: var(--brand);
}

.nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #020B12;
    font-size: 14px;
}

.nav .site-menu {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    align-items: center;
}

.site-menu__item {
    position: relative;
}

.site-menu__trigger,
.site-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
    color: #020B12;
    font: inherit;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.site-menu__trigger {
    appearance: none;
}

.site-menu__arrow {
    font-size: 10px;
    transition: transform .2s ease;
}

.site-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    display: grid;
    gap: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #dbe3ea;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(9, 20, 31, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav .site-menu__item_dropdown:hover .site-menu__panel,
.nav .site-menu__item_dropdown:focus-within .site-menu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav .site-menu__item_dropdown:hover .site-menu__arrow,
.nav .site-menu__item_dropdown:focus-within .site-menu__arrow {
    transform: rotate(180deg);
}

.site-menu__panel-link {
    padding: 0;
    color: #373b40;
    line-height: 1.35;
    text-decoration: none;
}

.site-menu__panel-link:hover {
    color: #F67417;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switcher,
.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switcher__link,
.mobile-lang-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #DCE5F2;
    background: #FFFFFF;
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.lang-switcher__link.is-active,
.mobile-lang-switcher__link.is-active {
    background: #111827;
    border-color: #111827;
    color: #FFFFFF;
}

.burger-btn {
    display: none;
    width: 42px;
    min-width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #111921;
}

.mobile-menu {
    display: none;
}

.mobile-menu-open {
    overflow: hidden;
}

.btn {
    padding: 10px 16px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: .4s opacity;
}

.btn:hover {
    opacity: .7;
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.btn-white {
    color: #F67417;
    background: #FFF;
}

.btn-primary {
    background: #F67417;
    color: #FFF;
}

.btn-secondary {
    background: #F6741729;
    color: #F67417;
}

.btn-big {
    padding: 24px 40px;
}

.page-404 {
    padding-top: 170px;
}

.hero {
    padding-top: 167px;
    padding-bottom: 60px;
    background-image: var(--hero-bg, none);
    background-position: right center;
    background-size: 50% auto;
    background-repeat: no-repeat;
    background-color: var(--bg);
}

.hero-privacy h1 {
    text-align: center;
}

.hero-privacy .hero-block {
    width: 100%;
}

.justify-end {
    justify-content: flex-end;
}

.hero-block_half {
    width: 60%;
    margin-top: 40px;
}

.hero-block h1 {
    margin-bottom: 30px;
}

.hero-block p {
    margin-bottom: 60px;
}

.hero h1 {
    margin-bottom: 0;
}

h1 {
    font-size: 40px;
    line-height: 1.15;
    margin: 12px 0 12px;
}

.hero p {
    color: #020B12;
    max-width: 520px;
}

.btn-primary.btn-white {
    background-color: #FFF;
    padding: 24px 40px;
    color: #020B12;
}

.hero-ill {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 20%, #ffffff, #e8f1ff 40%, #d3ecff 70%),
        linear-gradient(120deg, #c6f1ff 0%, #e7f7ff 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-ill::before {
    content: "";
    position: absolute;
    inset: 18% 8% auto auto;
    width: 140px;
    height: 90px;
    background: linear-gradient(180deg, #fd6b6b 0%, #ffffff 40%, #33a1ff 70%, #ffffff 100%);
    border-radius: 8px;
    box-shadow: 0 18px 24px rgba(15, 23, 42, 0.15);
    transform: rotate(6deg);
}

.hero-ill::after {
    content: "";
    position: absolute;
    left: 22%;
    bottom: 14%;
    width: 180px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, #7bd48a, #2fbd74);
    border-radius: 70% 50% 60% 40%;
    opacity: 0.9;
}

.grid {
    display: grid;
    gap: 24px;
}

.card {
    background: #F9F9FA;
    border-radius: 20px;
    padding: 40px;
}

.card img {
    max-width: 80px;
}

.card-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #00111E;
    margin-top: 40px;
}

.mini {
    color: #020B12;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat {
    background: #F4F6F8;
    padding: 20px;
    border-radius: 20px;
    display: grid;
    gap: 8px;
}

.stat .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 64px;
}

.stat .mini {
    margin-top: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table th,
table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

table th {
    color: var(--muted);
    font-weight: 600;
}

.callout {
    background: #F9F9FA;
    border-radius: 20px;
    padding: 40px;
    margin-top: 100px;
}

.callout-box {
    display: flex;
    color: #F67417;
    font-size: 16px;
    align-items: center;
    margin-top: 20px;
}

.callout-box_icon {
    border-right: 1px solid #F67417;
    padding-right: 20px;
    margin-right: 20px;
}

.icon-quote {
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    width: 52px;
    height: 65px;
    background-image: url(./img/quote.svg);
}

.callout .bubble {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #ffffff;
    display: grid;
    place-items: center;
    color: var(--brand);
    font-weight: 700;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 24px 0;
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.faq {
    background: #FFF;
    padding-bottom: 160px;
}

.faq .section-title {
    margin-bottom: 40px;
}

.faq .row {
    gap: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    cursor: pointer;
    border-bottom: 1px solid #D3D9E1;
}

.faq-item_answer {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2F3235;
    padding-top: 10px;
    display: none;
}

.faq-item_question {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #020B12;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-arrow-faq {
    background-image: url(./img/icon-arrow-faq.svg);
    width: 28px;
    height: 28px;
    transition: .4s transform;
}

.faq-item.active .icon-arrow-faq {
    transform: rotate(180deg);
}

.faq-item.active .faq-item_answer {
    display: block;
}

.banner .panel {
    max-width: 530px;
    width: 100%;
}

.banner .form {
    display: grid;
    gap: 10px;
    background: #F8F9FA;
    border-radius: 20px;
    padding: 30px;
    margin-top: 60px;
}

.input {
    border: none;
    background: #FFF;
    color: #A3A8AE;
    border-radius: 10px;
    padding: 19px 12px;
    font-size: 16px;
}

.input-invalid {
    border: 1px solid #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

textarea {
    resize: none;
}

.form-title {
    color: #020B12;
    font-size: 24px;
}

.banner .input::placeholder {
    color: #A3A8AE;
}

.banner .btn {
    padding: 19px 24px;
}

.form-field-error,
.form-status {
    font-size: 14px;
    line-height: 1.4;
}

.form-field-error {
    margin-top: -2px;
    color: #d92d20;
}

.form-status {
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 10px;
}

.form-status.is-error {
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecdca;
}

.form-status.is-success {
    color: #027a48;
    background: #ecfdf3;
    border: 1px solid #abefc6;
}

.form-trap,
.form-meta-field {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.read-more {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.footer {
    padding: 24px 0 60px;
    padding-top: 80px;
    padding-bottom: 10px;
    color: var(--muted);
}

.footer-menu_item {
    margin-bottom: 10px;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--ink);
}

.footer-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.footer-left {
    margin-right: auto;
    min-width: 200px;
}

.footer-col {
    max-width: 140px;
    width: 100%;
}

.footer .logo {
    width: 100%;
    max-width: 100%;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid #D3D9E1;
}

.footer .logo img {
    max-width: 130px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #E5E7E8;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom_right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-bottom_left a {
    display: inline-block;
    margin-right: 10px;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-social {
    transition: .4s opacity;
}

.footer-social:hover {
    opacity: .7;
}

.icon-tg {
    background-image: url(./img/icon-tg.svg);
    width: 16px;
    height: 16px;
}

.article-row {
    display: flex;
    gap: 60px;
}

.article-nav {
    max-width: 310px;
    width: 100%;
    flex: 0 0 310px;
}

.article-nav_header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.article-nav_header-info {}

.article-nav_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #00111E;
}

.article-nav_header-logo {
    max-width: 60px;
}

.article-nav_header-logo img {
    width: 100%;
    height: auto;
}

.article-nav_header-info span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #909EA8;
}

.article-nav .btn-cta {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F67417;
    color: #FFF;
    border-radius: 10px;
    padding: 24px 16px;
}

.article-nav_list {
    margin: 0;
    padding-top: 20px;
    padding-left: 16px;
    padding-bottom: 40px;
}

.article-nav_list li::marker,
.article-nav_list a {
    color: #F67417;
}

.icon-tg-btn {
    width: 16px;
    height: 16px;
    background-image: url(./img/tg-btn-icon.svg);
}

.article-wrap {
    max-width: calc(100% - 310px);
}

.article-wrap h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
    margin-top: 0;
}

.article-wrap h3,
.article-wrap h4,
.article-wrap h5,
.article-wrap h6 {
    font-size: 32px;
    line-height: 40px;
}

.article-wrap ul {
    padding: 0;
    padding-left: 16px;
}

.article-wrap section:not(:last-child) {
    margin-bottom: 100px;
}

.article-wrap {
    color: #2F3235;
}

.embedded-image {
    height: auto;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.gray-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #909EA8;
}

.banner {
    background-image: var(--home-contact-bg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

.banner .container {
    justify-content: flex-end;
    display: flex;
}

.articles-list {
    padding: 120px 0;
}

.section-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #909EA8;
    max-width: 680px;
    margin: 0 auto;
    margin-bottom: 60px;
    width: 100%;
}

.read-card {
    transition: .4s opacity;
}

.read-card:hover {
    opacity: .7;
}

.read-card_thumbnail {
    margin-bottom: 20px;
    background-color: #F9F9FA;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 380px;
    overflow: hidden;
}

.read-card_thumbnail img {
    max-width: 100%;
}

.read-card_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #020B12;
}

.read-card_text {
    font-size: 16px;
    line-height: 24px;
    color: #909EA8;
}

.read-card_link {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F67417;
    transition: .4s opacity;
}

.read-card_link:hover {
    opacity: .7;
}

.icon {
    display: inline-block;
}

.icon-more {
    background-image: url(./img/icon-more.svg);
    width: 16px;
    height: 16px;
}

.feature-list {
    display: flex;
    gap: 20px;
}

.feature-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    width: calc(33.33% - 10px);
}

.feature-item_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #00111E;
    margin-bottom: 10px;
}

.feature-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2D3339;
    margin: 0;
}

.landing {
    background: #F3F5F7;
}

.landing section {
    padding: 120px 0;
}

.landing section:nth-child(odd) {
    background-color: #FFF;
}

.landing-wrap {
    padding-top: 120px;
}

.landing-wrap .section-title {
    text-align: center;
    font-size: 40px;
    line-height: 48px;
    color: #00111E;
}

.landing-wrap section {
    padding-bottom: 160px;
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 80px;
}

.provider-item {
    border-radius: 10px;
    background: #F9F9FA;
    padding: 30px;
    max-width: 244px;
    width: calc(20% - 16px);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #A3A8AE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-item_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #00111E;
    margin-bottom: 10px;
    margin-top: 30px;
}

.provider-item_logo {}

.provider-item_logo img {
    max-width: 100%;
    height: auto;
}

.provider-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #909EA8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 24px;
    margin-top: 44px;
}

.tech-card {
    background: #FFF;
    border-radius: 20px;
    padding: 30px 34px;
}

.tech-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
}

.tech-icon svg {
    width: 54px;
    height: 54px;
}

.tech-card-meta {
    margin: 0;
    color: #4c9d16;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.btn-block {
    display: flex;
    justify-content: flex-start;
    margin: 80px 0;
}

.tech-card-title {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #0b141d;
    font-weight: 500;
}

.tech-card-text {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: #505860;
}

.section-providers {
    padding-bottom: 0 !important;
}

.section-banner {
    padding: 80px 0;
    margin-top: 160px;
    background-image: var(--home-section-banner-bg);
    background-size: cover;
    background-position: center;
}

.section-banner .banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-banner .banner-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    color: #FFF;
    margin-bottom: 30px;
    max-width: 540px;
}

.section-banner .btn {
    padding: 12px 24px;
}

.section-offer .section-content {
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2F3235;
}

.section-content {
    margin-bottom: 80px;
}

.section-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    color: #00111E;
    text-align: left;
}

.section-offer .row {
    gap: 110px;
}

.offer-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
}

.offer-table-wrap::-webkit-scrollbar {
    height: 8px;
}

.offer-table-wrap::-webkit-scrollbar-track {
    background: #D3D9E1;
    border-radius: 999px;
}

.offer-table-wrap::-webkit-scrollbar-thumb {
    background: #F67417;
    border-radius: 999px;
}

.offer-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    color: #373b40;
    font-size: 16px;
    line-height: 1.35;
}

.offer-table th,
.offer-table td {
    padding: 24px 0;
    border-bottom: 1px solid #d7dce2;
    vertical-align: middle;
}

.offer-table th {
    font-weight: 400;
    color: #373b40;
}

.offer-table th:first-child,
.offer-table td:first-child {
    width: 31%;
    text-align: left;
}

.article .offer-table th:first-child,
.article .offer-table td:first-child {
    width: 20%;
}

.offer-table th:not(:first-child),
.offer-table td:not(:first-child) {
    width: 23%;
    text-align: center;
}

.article .offer-table th:not(:first-child),
.article .offer-table td:not(:first-child) {
    width: 23%;
}

.article .offer-table {
    width: 100%;
    min-width: unset;
}

.offer-table-pill {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    background: #eef0f4;
    color: #373b40;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}

.offer-table-pill_brand {
    background: #4c9d16;
    color: #fff;
}

.offer-table .is-good {
    color: #4c9d16;
}

.offer-table .is-bad {
    color: #ee1f1f;
}

.offer-table td:first-child {
    position: relative;
}

.offer-table td:first-child .tooltip {
    padding: 10px 15px;
    background: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(0, 17, 30, 0.1);
    border-radius: 10px;
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    width: min(320px, calc(100vw - 40px));
    border-radius: 8px;
    color: #2F3235;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 3;
}

.icon-question-table:hover+.tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.offer-table-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #373b40;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    vertical-align: middle;
}

.product-lines {
    margin-top: 60px;
    border-top: 1px solid #cfd6de;
    margin-bottom: 120px;
}

.product-line {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 32px 56px;
    padding: 44px 0;
    border-bottom: 1px solid #cfd6de;
}

.product-line:last-child {
    border-bottom: 0;
}

.product-line-title {
    margin: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #0f1720;
}

.product-line-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: #373b40;
}

.steps-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.step-card-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #a2a9b1;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
}

.step-card-title {
    margin: 0;
    color: #111921;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
}

.step-card-text {
    margin: 14px 0 0;
    color: #2F3235;
    font-size: 16px;
    line-height: 1.45;
}

.step-card-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f67417;
    font-size: 16px;
    line-height: 1.25;
}

.step-card-link-icon {
    width: 16px;
    height: 16px;
    background-image: url(./img/icon-more.svg);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-item {
    background: #F9F9FA;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 40px;
}

.benefits-item_step {
    min-width: 80px;
    height: 80px;
    background: #909EA8;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
}

.benefits-item_content {}

.benefits-item_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #909EA8;
    margin-bottom: 20px;
}

.benefits-item_more {}

.benefits-item_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #00111E;
    margin-bottom: 10px;
}

.breadcrumb {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb span {
    color: #A3A8AE;
}

.post-meta {
    display: flex;
    color: #A3A8AE;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.post-meta_field {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta_field:after {
    content: '•';
    display: inline-block;
    padding-left: 10px;
}

.post-meta_field:last-child:after {
    display: none;
}

.icon {
    display: inline-block;
}

.icon-timer {
    background-image: url(./img/icon-timer.svg);
    width: 16px;
    height: 16px;
}

.icon-views {
    background-image: url(./img/icon-views.svg);
    width: 20px;
    height: 20px;
}

.icon-breadcrumb {
    display: inline-block;
    background-image: url(./img/icon-breadcrumb-arrow.svg);
    width: 16px;
    height: 16px;
}

.home-hero {
    background-image: var(--home-hero-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-height: 795px;
    display: flex;
    align-items: center;
}

article,
.section-offer,
.section-providers,
.section-product,
.section-testimonials,
.articles-list,
.integration-steps,
.faq,
.seo,
.banner,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.testimonial-list {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-item {
    border-radius: 20px;
    background-color: #FFF;
    padding: 40px;
    display: flex;
    gap: 40px;
}

.testimonial-img {}

.testimonial-content {}

.testimonial-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #020B12;
    margin-bottom: 30px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
}

.testimonial-meta_img {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #F67417;
}

.testimonial-meta_content {}

.testimonial-meta_title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #020B12;
}

.testimonial-meta p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2F3235;
}

.section-product {
    padding-bottom: 0 !important;
}

.seo .section-content {
    margin-bottom: 40px;
}

.seo-text a {
    color: #4195FD;
}

.seo-text_hidden>div:not(:last-child) {
    margin-bottom: 60px;
}

.seo-table {
    margin-top: 34px;
    margin-bottom: 60px;
}

.seo-table_row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    padding: 24px 0;
    border-bottom: 1px solid #d3d9e1;
}

.seo-table_row_head {
    padding-top: 18px;
    padding-bottom: 18px;
}

.seo-table_row_head .seo-table-col {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #111921;
}

.seo-table-col strong {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    color: #2f3235;
}

.seo-table-col p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    color: #2f3235;
}

.icon-arrow-down-black {
    background-image: url(./img/icon-arrow-down-black.svg);
    width: 16px;
    height: 16px;
    background-size: contain;
}

.blog-list {
    background: #FFF;
    margin-top: 60px;
    margin-bottom: 160px;
}

.page .banner {
    padding-top: 160px;
}

.icon-question-table {
    width: 16px;
    height: 16px;
    background-image: url(./img/icon-question-table.svg);
    vertical-align: middle;
    cursor: pointer;
    transition: .4s opacity;
}

.icon-question-table:hover {
    opacity: .7;
}

.hero-btn {
    background-color: #f2d9c7 !important;
    background-image: linear-gradient(270deg, #FFFFFF 0%, rgba(246, 116, 23, 0) 50%, #FFFFFF 100%) !important;
    background-size: 240% 100%;
    animation: hero-btn-shimmer 3s ease-in-out infinite;
    transition: background-color .3s ease, color .3s ease;
}

.hero-btn:hover {
    background: #F67417 !important;
    color: #FFF;
    opacity: 1;
    animation: none;
}

.icon-telegram {
    background-image: url(./img/telegram.svg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon-linkedin {
    background-image: url(./img/linkedin.svg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon-instagram {
    background-image: url(./img/instagram.svg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon-facebook {
    background-image: url(./img/facebook.svg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon-reddit {
    background-image: url(./img/reddit.svg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.strong {
    font-weight: bold;
}

.footer-col_title {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 16px;
    color: #020B12;
}

form .input {
    color: #020B12;
}

.contact-info_label {
    font-weight: bold;
}

@keyframes hero-btn-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 980px) {
    .contact {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq {
        grid-template-columns: 1fr;
    }

    .read-more {
        grid-template-columns: 1fr;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }

    .nav {
        display: none;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tech-card {
        padding: 24px;
        border-radius: 14px;
    }

    .tech-card-meta {
        font-size: 14px;
    }

    .tech-card-title {
        margin-top: 12px;
        font-size: 20px;
    }

    .tech-card-text {
        margin-top: 12px;
        font-size: 14px;
    }

    .offer-table {
        font-size: 14px;
        min-width: 700px;
    }

    .product-lines {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .product-line {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .product-line-title {
        font-size: 18px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .step-card {
        padding: 24px;
        border-radius: 14px;
    }

    .step-card-num {
        width: 80px;
        height: 80px;
        font-size: 40px;
        line-height: 80px;
        margin-bottom: 20px;
    }

    .step-card-title {
        font-size: 20px;
    }

    .step-card-text {
        margin-top: 12px;
        font-size: 15px;
    }

    .offer-table-pill {
        font-size: 14px;
        padding: 10px 14px;
    }

    .offer-table-hint {
        width: 16px;
        height: 16px;
        font-size: 11px;
        border-width: 1px;
    }

    .faq-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .faq-item_question {
        position: relative;
        font-size: 18px;
        padding-right: 30px;
    }

    .faq-item_question .icon-arrow-faq {
        position: absolute;
        right: 0;
        top: 0;
    }

    .banner .form {
        margin-top: 40px;
        padding: 20px;
    }

    .form-title {
        font-size: 20px;
        font-weight: 500;
    }
}

@media screen and (max-width: 767px) {
    .providers-list {
        gap: 10px;
    }

    .burger-btn {
        display: flex;
    }

    .hero-block_half {
        width: 100%;
        margin-top: 0;
    }

    .feature-list {
        flex-direction: column;
        gap: 10px;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }

    .testimonial-item {
        flex-direction: column;
    }

    .footer-bottom,
    .footer-bottom_right {
        flex-direction: column;
        align-items: flex-start;
    }

    .provider-item {
        width: calc(50% - 10px);
    }

    .actions .btn-secondary {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 50;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(7, 10, 14, 0.88);
    }

    .mobile-menu__panel {
        position: fixed;
        display: flex;
        flex-direction: column;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 18px 18px 24px;
        overflow: hidden;
        transform: translateY(20px);
        transition: transform .25s ease;
    }

    .mobile-menu.is-open .mobile-menu__panel {
        transform: translateY(0);
    }

    .mobile-menu__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid #d3d9e1;
    }

    .mobile-menu__body {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding-top: 8px;
    }

    .mobile-lang-switcher {
        padding: 16px 0 8px;
    }

    .mobile-menu__logo {
        width: 120px;
        height: auto;
    }

    .mobile-menu__close {
        border: none;
        width: 36px;
        height: 36px;
        background: transparent;
        position: relative;
        cursor: pointer;
    }

    .mobile-menu__close::before,
    .mobile-menu__close::after {
        content: "";
        position: absolute;
        left: 7px;
        right: 7px;
        top: 17px;
        height: 2px;
        background: #111921;
    }

    .mobile-menu__close::before {
        transform: rotate(45deg);
    }

    .mobile-menu__close::after {
        transform: rotate(-45deg);
    }

    .mobile-menu__body .site-menu {
        display: block;
    }

    .mobile-menu__body .site-menu__item {
        border-bottom: 1px solid #d3d9e1;
    }

    .mobile-menu__body .site-menu__trigger,
    .mobile-menu__body .site-menu__link {
        min-height: 72px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 0;
        border: none;
        background: transparent;
        text-align: left;
        font-weight: 500 !important;
        font-size: 20px;
        line-height: 1.2;
        color: #111921;
    }

    .mobile-menu__body .site-menu__link {
        text-decoration: none;
    }

    .mobile-menu__lang {
        margin-left: auto;
        margin-right: 8px;
    }

    .mobile-menu__body .site-menu__arrow {
        margin-left: auto;
        transition: .4s transform;
    }

    .mobile-menu__body .site-menu__item.is-open .site-menu__arrow {
        transform: rotate(180deg);
    }

    .mobile-menu__body .site-menu__panel {
        display: none;
        position: static;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        padding: 2px 0 18px;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .mobile-menu__body .site-menu__item.is-open .site-menu__panel {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-menu__body .site-menu__panel-link {
        font-size: 18px;
        line-height: 1.35;
        color: #373b40;
        text-decoration: none;
    }

    .mobile-menu__cta {
        width: 100%;
        border-radius: 14px;
        min-height: 76px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
        margin-top: 18px;
    }

    .offer-table {
        min-width: 700px;
    }

    .offer-table-wrap {
        width: 100%;
        max-width: calc(100vw - 30px);
        overflow-x: auto;
        overflow-y: hidden;
    }

    .footer-left {
        flex: 1 0 100% !important;
        width: 100%;
        max-width: 100%;
    }

    .footer-row {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom_right {
        margin-top: 20px;
    }

    .articles-list {
        padding-bottom: 0;
    }

    .topbar {
        position: fixed;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }

    .topbar .btn {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 10px;
        margin-top: 0;
        font-weight: 500;
    }

    .home-hero {
        background: #f67518 !important;
        padding-top: 110px !important;
        padding-bottom: 30px !important;
    }

    .hero-block {}

    .hero-block p {
        margin-bottom: 20px;
    }

    .hero-block .btn-primary {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        border-radius: 10px;
    }

    .landing section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .feature-item {
        padding: 20px;
        width: 100%;
    }

    .feature-item_title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .section-content {
        margin-bottom: 30px;
    }

    .tech-card {
        padding: 20px;
    }

    .tech-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .tech-card-title {
        font-size: 18px;
    }

    .btn-block {
        margin-top: 30px;
        margin-bottom: 60px;
    }

    .btn-block .btn-primary {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-banner {
        margin-top: 60px;
    }

    .section-banner .banner-title {
        font-size: 24px;
    }

    .section-banner .btn {
        padding: 20px;
    }

    .seo-table_row {
        gap: 20px;
        padding: 20px 0;
    }

    .seo-table_row_head .seo-table-col {
        font-size: 18px;
    }

    .seo-text h3 {
        font-size: 20px;
    }

    .seo-text h4 {
        font-size: 18px;
    }

    .seo-table-col strong {
        font-size: 16px;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .seo-table-col p {
        font-size: 16px;
        line-height: 1.45;
    }

    .testimonial-list {
        margin-top: 40px;
    }

    .testimonial-item {
        gap: 20px;
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 24px;
    }

    .testimonial-img {
        max-width: 80px;
    }

    .testimonial-img img {
        width: 100%;
    }

    .article-row {
        flex-direction: column-reverse;
    }

    .breadcrumb {
        white-space: nowrap;
        overflow: auto;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero {
        padding-top: 117px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-block {
        max-width: 100%;
    }

    .icon-breadcrumb {
        min-width: 16px;
    }

    .article-nav_title {
        font-size: 20px;
        line-height: 28px;
    }

    .article-nav {
        max-width: unset;
    }

    .article-wrap {
        max-width: 100%;
    }

    .article-wrap h2 {
        font-size: 24px;
        line-height: 32px;
    }

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

    .stat {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .stat .mini {
        margin: 0;
    }

    .stat .icon {
        width: 60px;
        height: 60px;
    }

    .article-wrap section {
        margin-bottom: 50px;
    }

    .article-wrap table th,
    .article-wrap table td {
        min-width: 160px;
    }

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

    .card {
        padding: 20px;
    }

    .card img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .card-title {
        margin-top: 0;
        font-size: 20px;
        line-height: 28px;
    }

    .card .mini {
        margin: 0;
    }

    .offer-table-wrap {
        margin-top: 20px;
    }

    .callout {
        margin-top: 50px;
        padding: 20px;
    }

    .callout-box {
        color: #2F3235;
    }

    .article-wrap h3,
    .article-wrap h4,
    .article-wrap h5,
    .article-wrap h6 {
        font-size: 20px;
        line-height: 28px;
    }

    .article-wrap section:last-child {
        margin-bottom: 0;
    }

    .article .banner {
        padding-top: 60px;
        background-color: transparent;
    }

    .article .banner .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .footer-bottom_left a {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .page-404 {
        padding-top: 30px;
    }
}

@media (max-width: 640px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}


body.page-404 {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(246, 116, 23, 0.12), transparent 26%),
        radial-gradient(circle at left center, rgba(65, 149, 253, 0.16), transparent 30%),
        linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%);
}

.page-404 .site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-404 .topbar-wrap {
    padding-top: 26px;
}

.page-404 main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
}

.error-hero {
    width: 100%;
}

.error-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 32px;
    padding: 48px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.1);
}

.error-card::before,
.error-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.error-card::before {
    width: 240px;
    height: 240px;
    top: -80px;
    right: -80px;
    background: rgba(246, 116, 23, 0.12);
}

.error-card::after {
    width: 180px;
    height: 180px;
    bottom: -70px;
    left: -40px;
    background: rgba(65, 149, 253, 0.1);
}

.error-copy,
.error-panel {
    position: relative;
    z-index: 1;
}

.error-code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff2e8;
    color: #c85d12;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-copy h1 {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 56px;
    line-height: 1.05;
    text-transform: none;
}

.error-copy p {
    max-width: 560px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.65;
    color: #4b5563;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.error-note {
    color: #667085;
    font-size: 15px;
}

.error-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0f172a 0%, #18263d 100%);
    color: #fff;
}

.error-panel-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.error-panel-value {
    margin-top: 10px;
    font-size: 92px;
    line-height: 0.95;
    font-weight: 700;
}

.error-links {
    display: grid;
    gap: 12px;
}

.error-link {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    transition: background .2s ease, border-color .2s ease;
}

.error-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.error-link strong,
.error-link span {
    display: block;
}

.error-link span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .error-card {
        grid-template-columns: 1fr;
    }

    .error-copy h1 {
        font-size: 48px;
    }
}

@media screen and (max-width: 767px) {
    .page-404 .topbar-wrap {
        padding-top: 14px;
    }

    .page-404 main {
        padding: 112px 0 56px;
    }

    .page-404 .topbar {
        position: static;
        width: 100%;
        transform: none;
    }

    .error-card {
        padding: 24px;
        border-radius: 24px;
        margin-top: 30px;
    }

    .error-copy h1 {
        font-size: 36px;
    }

    .error-copy p {
        font-size: 16px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
        text-align: center;
    }

    .error-panel {
        padding: 22px;
    }

    .error-panel-value {
        font-size: 72px;
    }

    .footer-row {
        flex-wrap: wrap;
    }
}
