@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Regular.woff2") format("woff2"),
        url("../fonts/Manrope-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Medium.woff2") format("woff2"),
        url("../fonts/Manrope-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"),
        url("../fonts/Manrope-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    line-height: 1.1;
    color: #030303;
    background: #ffffff;
}

:root {
    --grid-side: 76px;
    --grid-gap: 25px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    gap: var(--grid-gap);
    width: calc(100% - var(--grid-side) * 2);
    margin: 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    background: #5e4ce0;
}

.header {
    position: absolute;
    z-index: 3;
    top: 40px;
    left: 0;
    width: 100%;
}

.header__inner {
    align-items: center;
}

.header__logo {
    grid-column: 2 / span 2;
    width: 145px;
}

.header__nav {
    grid-column: 4 / span 7;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.header__menu-item--dropdown {
    position: relative;
}

.header__menu-item--platforms,
.header__menu-item--language {
    padding: 12px 0;
}

.header__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header__menu-link img {
    width: 7px;
    height: 5px;
}

.platforms-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 204px;
    margin: 0;
    padding: 8px;
    border-radius: 12px;
    list-style: none;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(16, 11, 70, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.platforms-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
}

.header__menu-item--platforms:hover .platforms-dropdown,
.header__menu-item--platforms:focus-within .platforms-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 156px;
    margin: 0;
    padding: 10px;
    border-radius: 10px;
    list-style: none;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(16, 11, 70, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
}

.header__menu-item--language:hover .language-dropdown,
.header__menu-item--language:focus-within .language-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.language-dropdown li + li {
    margin-top: 6px;
}

.language-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 9px;
    border: 1px solid #f5f1ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    background: #fbfafe;
}

.platforms-dropdown li + li {
    margin-top: 6px;
}

.platforms-dropdown a {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    min-height: 46px;
    padding: 0 9px;
    border: 1px solid #f5f1ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    background: #fbfafe;
}

.platforms-dropdown img {
    width: 32px;
    height: 32px;
}

.platforms-dropdown span {
    justify-self: center;
}

.header__actions {
    grid-column: 12 / span 2;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 25px;
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    background: #ffffff;
}

.header__registration {
    min-width: 175px;
    background: #5e4ce0;
}

.header__burger {
    display: none;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 1080px;
    overflow: hidden;
    background: #ffffff;
}

.hero__decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero__decor--left {
    top: 0;
    left: 0;
    width: 890px;
}

.hero__decor--left-mobile {
    display: none;
}

.hero__decor--right {
    top: 181px;
    right: 0;
    width: 950px;
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 396px;
}

.hero__text {
    grid-column: 2 / span 5;
    width: 670px;
    margin: 0 0 0;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero__title {
    grid-column: 2 / span 8;
    max-width: 920px;
    margin: 0 0 45px;
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero__title span {
    display: inline-flex;
    align-items: center;
    color: #5e4ce0;
}

.hero__icon {
    width: 62px;
    height: 63px;
    margin-left: 8px;
}

.hero__button {
    grid-column: 2 / span 3;
    justify-self: start;
    min-width: 267px;
    font-size: 24px;
}

.about-posting {
    margin-top: 100px;
    margin-bottom: 160px;
}

.about-posting__inner {
    align-content: start;
    row-gap: 0;
    padding-top: 25px;
}

.about-posting__lead,
.about-posting__content p {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.about-posting__lead--left {
    grid-column: 2 / span 6;
    padding-right: 40px;
}

.about-posting__lead--right {
    grid-column: 8 / span 6;
}

.about-posting__title {
    grid-column: 2 / span 6;
    align-self: start;
    margin: 100px 0 0;
    padding-bottom: 0.12em;
    color: transparent;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-posting__title span,
.about-posting__lead span,
.about-posting__content span {
    color: #5e4ce0;
    font-weight: 600;
}

.about-posting__title span {
    display: block;
    padding-bottom: 0.12em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.about-posting__content {
    grid-column: 8 / span 6;
    display: grid;
    gap: 24px;
    margin-top: 100px;
}

.audience {
    margin-bottom: 160px;
}

.audience__inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    border-radius: 16px;
    color: #ffffff;
    background: #5e4ce0;
}

.audience__grid {
    min-height: 920px;
    padding-top: 128px;
    padding-bottom: 128px;
}

.audience__intro {
    grid-column: 2 / span 5;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.audience__title {
    max-width: 520px;
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.audience__text,
.audience__note {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}

.audience__text {
    max-width: 480px;
    margin-top: 28px;
}

.audience__note {
    grid-column: 2 / span 4;
    grid-row: 1;
    align-self: end;
    max-width: 520px;
}

.audience__cards {
    grid-column: 8 / span 6;
    grid-row: 1;
    display: grid;
    gap: 24px;
}

.audience-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    min-height: 150px;
    padding: 30px;
    border-radius: 14px;
    color: #030303;
    background: rgba(255, 255, 255, 0.94);
}

.audience-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #5e4ce0;
}

.audience-card__icon img {
    width: 27px;
    height: 27px;
}

.audience-card__title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.audience-card__text {
    max-width: 540px;
    margin: 18px 0 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.service-features {
    margin-bottom: 160px;
}

.service-features__inner {
    row-gap: 0;
}

.service-features__heading {
    grid-column: 4 / span 8;
    text-align: center;
}

.service-features__title {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 0.12em;
    color: transparent;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-features__title span {
    display: block;
    padding-bottom: 0.12em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.service-features__subtitle {
    max-width: 560px;
    margin: 28px auto 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}

.service-features__cards {
    grid-column: 2 / span 12;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 25px;
    margin-top: 106px;
}

.service-feature-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 26px;
    row-gap: 24px;
    min-height: 220px;
    padding: 30px;
    border-radius: 15px;
    background: #fbfafe;
}

.service-feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #5e4ce0;
}

.service-feature-card__icon img {
    width: 27px;
    height: 27px;
}

.service-feature-card__title {
    max-width: 610px;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.service-feature-card__text {
    grid-column: 1 / -1;
    max-width: 610px;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.workflow {
    margin-bottom: 160px;
}

.workflow__inner {
    row-gap: 0;
}

.workflow__heading {
    grid-column: 4 / span 8;
    text-align: center;
}

.workflow__title {
    max-width: 740px;
    margin: 0 auto;
    padding-bottom: 0.12em;
    color: transparent;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.workflow__title span {
    display: block;
    padding-bottom: 0.12em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.workflow__subtitle {
    max-width: 610px;
    margin: 25px auto 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}

.workflow__steps {
    grid-column: 3 / span 10;
    display: grid;
    gap: 70px;
    margin-top: 102px;
}

.workflow-step {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    column-gap: 100px;
    align-items: start;
}

.workflow-step__media {
    grid-column: 1 / span 5;
    overflow: hidden;
    min-height: 470px;
    border-radius: 20px;
}

.workflow-step__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workflow-step__content {
    grid-column: 6 / span 5;
    padding-top: 0;
}

.workflow-step--reverse .workflow-step__media {
    grid-column: 6 / span 5;
    grid-row: 1;
}

.workflow-step--reverse .workflow-step__content {
    grid-column: 1 / span 5;
    grid-row: 1;
}

.workflow-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 6px;
    color: #5e4ce0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background: #edebff;
}

.workflow-step__title {
    max-width: 560px;
    margin: 35px 0 0;
    color: #5e4ce0;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.workflow-step__text {
    display: grid;
    gap: 24px;
    max-width: 580px;
    margin-top: 34px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.workflow-step__text p {
    margin: 0;
}

.advantages {
    margin-bottom: 160px;
    padding: 160px 0;
    background: #fbfafe;
}

.advantages__inner {
    row-gap: 0;
}

.advantages__heading {
    grid-column: 4 / span 8;
    text-align: center;
}

.advantages__title {
    max-width: 660px;
    margin: 0 auto;
    padding-bottom: 0.12em;
    color: transparent;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages__title span {
    display: block;
    padding-bottom: 0.12em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.advantages__subtitle {
    max-width: 560px;
    margin: 25px auto 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
}

.advantages__cards {
    grid-column: 3 / span 10;
    display: grid;
    gap: 24px;
    margin-top: 108px;
}

.advantage-card {
    min-height: 320px;
    padding: 60px;
    border-radius: 15px;
    background: #ffffff;
}

.advantage-card--with-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 90px;
}

.advantage-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 9px 20px rgba(94, 76, 224, 0.18);
}

.advantage-card__icon img {
    width: 38px;
    height: 38px;
}

.advantage-card__title {
    max-width: 880px;
    margin: 31px 0 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.advantage-card__text {
    display: grid;
    gap: 22px;
    max-width: 990px;
    margin-top: 32px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.advantage-card__text p {
    margin: 0;
}

.advantage-card__aside {
    padding-top: 4px;
}

.advantage-card__label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0;
    padding: 0 12px;
    border-radius: 6px;
    color: #5e4ce0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    background: #edebff;
}

.advantage-card__list {
    display: grid;
    gap: 27px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.advantage-card__list li {
    position: relative;
    padding-left: 18px;
}

.advantage-card__list li::before {
    content: "";
    position: absolute;
    top: 0.2em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #5e4ce0;
}

.features {
    margin-bottom: 160px;
}

.features__inner {
    row-gap: 0;
}

.features__title {
    grid-column: 5 / span 6;
    margin: 0;
    padding-bottom: 0.12em;
    color: transparent;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-align: center;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features__title span {
    display: block;
    padding-bottom: 0.12em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.features__cards {
    grid-column: 2 / span 12;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 100px;
}

.feature-card {
    overflow: hidden;
    height: 560px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(3, 3, 3, 0.06);
}

.feature-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 118px;
    padding: 0 30px;
    border: 0;
    color: #030303;
    font: inherit;
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
    background: #f4f4f4;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.feature-card__title {
    flex: 1 1 auto;
    max-width: none;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.feature-card__toggle {
    flex: 0 0 auto;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #5e4ce0 url("../img/features/arrow-down.svg") center / 18px 18px no-repeat;
}

.feature-card.is-open {
    background: #edebff;
    box-shadow: none;
}

.feature-card.is-open .feature-card__header {
    background: #edebff;
}

.feature-card.is-open .feature-card__toggle {
    background-image: url("../img/features/arrow-up.svg");
}

.feature-card__body {
    display: flex;
    flex-direction: column;
    height: 442px;
    overflow: hidden;
}

.feature-card__text {
    display: none;
    margin: 0;
    padding: 28px 30px 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.feature-card.is-open .feature-card__text {
    display: block;
}

.feature-card__image {
    width: 100%;
    margin-top: auto;
    flex: 0 0 auto;
}

.feature-card:nth-child(1) .feature-card__image {
    padding: 0 20px;
}

.feature-card:nth-child(2) .feature-card__image {
    padding: 0 0 0 20px;
}

.safety {
    margin-bottom: 160px;
    padding: 100px 0;
    background: #fbfafe;
}

.safety__inner {
    row-gap: 0;
}

.safety__heading {
    grid-column: 2 / span 6;
    display: flex;
    align-items: center;
    gap: 28px;
}

.safety__icon {
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
}

.safety__title {
    margin: 0;
    padding-bottom: 0.12em;
    color: transparent;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.safety__title span {
    display: block;
    padding-bottom: 0.12em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.safety__content {
    display: grid;
    gap: 24px;
    margin-top: 90px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
}

.safety__content p {
    margin: 0;
}

.safety__content--left {
    grid-column: 2 / span 6;
    padding-right: 70px;
}

.safety__content--right {
    grid-column: 8 / span 5;
    padding-left: 30px;
}

.manual-risks {
    margin-bottom: 160px;
}

.manual-risks__inner {
    row-gap: 0;
}

.manual-risks__heading {
    grid-column: 4 / span 8;
    text-align: center;
}

.manual-risks__title {
    max-width: 920px;
    margin: 0 auto;
    padding-bottom: 0.12em;
    color: transparent;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manual-risks__title span {
    display: block;
    padding-bottom: 0.12em;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.manual-risks__subtitle {
    max-width: 580px;
    margin: 28px auto 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.manual-risks__cards {
    grid-column: 2 / span 12;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 100px;
}

.manual-risk-card {
    min-height: 375px;
    padding: 36px 30px;
    border-radius: 15px;
    background: #fbfafe;
}

.manual-risk-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-height: 112px;
    padding-bottom: 26px;
    border-bottom: 1px solid #dedafd;
}

.manual-risk-card__title {
    max-width: 340px;
    margin: 0;
    color: #5e4ce0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.manual-risk-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #5e4ce0;
}

.manual-risk-card__icon img {
    width: 30px;
    height: 30px;
}

.manual-risk-card__text {
    display: grid;
    gap: 24px;
    margin-top: 26px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.manual-risk-card__text p {
    margin: 0;
}

.free-start {
    min-height: 480px;
    padding: 160px 0;
    color: #ffffff;
    background: #5e4ce0 url("../img/bg-free.png") center / cover no-repeat;
}

.free-start__inner {
    row-gap: 0;
}

.free-start__content {
    grid-column: 2 / span 5;
}

.free-start__title {
    max-width: 660px;
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.free-start__title span {
    display: block;
}

.free-start__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 226px;
    min-height: 56px;
    margin-top: 92px;
    padding: 0 26px;
    border-radius: 8px;
    color: #5e4ce0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    background: #ffffff;
}

.free-start__text {
    grid-column: 8 / span 5;
    display: grid;
    gap: 24px;
    margin-top: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.free-start__text p {
    margin: 0;
}

.faq {
    padding: 160px 0 120px;
    background: #fbfafe;
}

.faq__inner {
    justify-items: center;
}

.faq__title {
    grid-column: 1 / -1;
    max-width: 820px;
    margin: 0;
    text-align: center;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: transparent;
    background: linear-gradient(180deg, #000000 0%, #5e4ce0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.faq__title span {
    display: block;
}

.faq__list {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(876px, 100%);
    margin-top: 100px;
}

.faq-item {
    width: 100%;
    padding: 26px 32px;
    border-radius: 10px;
    background: #ffffff;
}

.faq-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 0;
    border: 0;
    color: #000000;
    font: inherit;
    text-align: left;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.faq-item__question {
    max-width: 900px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.faq-item__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f4f7;
}

.faq-item__icon::before {
    content: "";
    width: 17px;
    height: 10px;
    background: url("../img/icon-faq.svg") center / contain no-repeat;
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon::before {
    transform: rotate(180deg);
}

.faq-item__body {
    display: none;
    max-width: 762px;
    margin-top: 16px;
    color: #424242;
    font-size: 20px;
    line-height: 1.1;
}

.faq-item.is-open .faq-item__body {
    display: block;
}

.faq-item__body p {
    margin: 0;
}

.soon-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0 0 160px;
    background: #fbfafe;
}

.soon-platforms__title {
    width: 100%;
    margin: 0;
    color: #c7c3e1;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.soon-platforms__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(34px, 5vw, 92px);
    width: min(1510px, calc(100% - var(--grid-side) * 2));
    margin: 0;
    padding: 0;
    list-style: none;
}

.soon-platforms__item {
    flex: 0 1 auto;
}

.soon-platforms__item img {
    width: 100%;
    height: auto;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 150px;
    background: #fff;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: min(1768px, calc(100% - var(--grid-side) * 2));
}

.footer__top,
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.footer__logo {
    display: block;
    flex: 0 0 auto;
    width: 215px;
}

.footer__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer__description {
    width: 580px;
    margin: 0;
    color: #858194;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.footer__nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.footer__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.footer__group--features {
    width: 224px;
}

.footer__group--platforms {
    width: 152px;
}

.footer__group--support {
    width: 304px;
}

.footer__group--docs {
    width: 327px;
}

.footer__group--details {
    width: 216px;
}

.footer__title {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #858194;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer__bottom {
    color: #858194;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.footer__bottom p {
    margin: 0;
}

.footer__art {
    display: block;
    width: 100%;
    height: auto;
}

.soon-platforms__item--linkedin {
    width: 160px;
}

.soon-platforms__item--pinterest {
    width: 169px;
}

.soon-platforms__item--rutube {
    width: 159px;
}

.soon-platforms__item--youtube {
    width: 173px;
}

.soon-platforms__item--twitter {
    width: 172px;
}

@media (max-width: 1440px) {
    :root {
        --grid-side: 100px;
        --grid-gap: 16px;
    }

    body {
        font-size: 18px;
        line-height: 1;
    }

    .header {
        top: 30px;
    }

    .header__logo {
        grid-column: 1 / span 2;
        width: 116px;
    }

    .header__nav {
        grid-column: 3 / span 8;
    }

    .header__menu {
        gap: 24px;
        font-size: 16px;
    }

    .header__actions {
        grid-column: 12 / span 3;
    }

    .button,
    .header__login {
        min-height: 51px;
        font-size: 16px;
    }

    .header__login {
        padding: 0 24px;
    }

    .header__registration {
        min-width: 147px;
    }

    .hero {
        min-height: 852px;
    }

    .hero__decor--left {
        top: 0;
        left: -100px;
        width: 700px;
    }

    .hero__decor--right {
        top: 111px;
        right: 0;
        width: 774px;
    }

    .hero__inner {
        padding-top: 314px;
    }

    .hero__text {
        grid-column: 1 / span 6;
        width: 600px;
        font-size: 16px;
    }

    .hero__title {
        grid-column: 1 / span 9;
        max-width: 860px;
        margin-bottom: 44px;
        font-size: 64px;
    }

    .hero__icon {
        width: 49px;
        height: 50px;
        margin-left: 6px;
    }

    .hero__button {
        grid-column: 1 / span 3;
        min-width: 229px;
        min-height: 68px;
        font-size: 20px;
    }

    .about-posting__inner {
        padding-top: 20px;
    }

    .about-posting__lead,
    .about-posting__content p {
        font-size: 20px;
        line-height: 1;
    }

    .about-posting__lead--left,
    .about-posting__title {
        grid-column: 1 / span 6;
    }

    .about-posting__lead--right,
    .about-posting__content {
        grid-column: 8 / span 6;
    }

    .about-posting__title {
        margin-top: 51px;
        font-size: 38px;
    }

    .about-posting__content {
        gap: 18px;
        margin-top: 53px;
    }
}

@media (max-width: 1280px) {
    :root {
        --grid-side: 80px;
        --grid-gap: 12px;
    }

    .header {
        top: 30px;
    }

    .header__logo {
        width: 105px;
    }

    .header__nav {
        grid-column: 3 / span 8;
    }

    .header__menu {
        gap: 20px;
        font-size: 14px;
    }

    .header__actions {
        grid-column: 12 / span 3;
        gap: 8px;
    }

    .button,
    .header__login {
        min-height: 45px;
        font-size: 14px;
    }

    .header__login {
        padding: 0 22px;
    }

    .header__registration {
        min-width: 142px;
    }

    .hero {
        min-height: 720px;
    }

    .hero__decor--left {
        top: 0;
        left: 0px;
        width: 580px;
    }

    .hero__decor--right {
        top: 88px;
        right: 0;
        width: 630px;
    }

    .hero__inner {
        padding-top: 263px;
    }

    .hero__text {
        grid-column: 1 / span 6;
        width: 600px;
        font-size: 16px;
    }

    .hero__title {
        grid-column: 1 / span 9;
        max-width: 800px;
        margin-bottom: 54px;
        font-size: 60px;
    }

    .hero__icon {
        width: 46px;
        height: 47px;
    }

    .hero__button {
        grid-column: 1 / span 3;
        min-width: 229px;
        min-height: 68px;
        font-size: 20px;
    }

    .about-posting__inner {
        padding-top: 20px;
    }

    .about-posting__lead,
    .about-posting__content p {
        font-size: 20px;
        line-height: 1;
    }

    .about-posting__lead--left,
    .about-posting__title {
        grid-column: 1 / span 6;
    }

    .about-posting__lead--right,
    .about-posting__content {
        grid-column: 8 / span 6;
    }

    .about-posting__title {
        margin-top: 68px;
        font-size: 38px;
    }

    .about-posting__content {
        gap: 24px;
        margin-top: 70px;
    }
}

@media (max-width: 1180px) {
    .header__nav {
        grid-column: 10 / span 1;
        justify-self: end;
    }

    .header__menu {
        gap: 0;
        font-size: 16px;
    }

    .header__menu-item--language {
        margin-right: 10px;
    }

    .header__menu-item:not(.header__menu-item--language) {
        display: none;
    }

    .header__actions {
        grid-column: 11 / span 3;
        gap: 10px;
    }

    .hero__title {
        max-width: 720px;
        font-size: clamp(52px, 5.4vw, 60px);
    }

    .hero__text {
        max-width: 560px;
    }
}

@media (max-width: 1024px) {
    :root {
        --grid-side: clamp(48px, 6.25vw, 64px);
        --grid-gap: 10px;
    }

    body {
        font-size: 16px;
    }

    .container {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .header {
        top: 27px;
    }

    .header__logo {
        grid-column: 1 / span 2;
        width: 112px;
    }

    .header__nav {
        grid-column: 7 / span 1;
        justify-self: end;
    }

    .header__menu {
        gap: 0;
        font-size: 16px;
    }

    .header__menu-item--language {
        margin-right: 10px;
    }

    .header__menu-item:not(.header__menu-item--language) {
        display: none;
    }

    .header__actions {
        grid-column: 8 / span 1;
        gap: 0;
    }

    .header__registration {
        display: none;
    }

    .header__login {
        min-height: 38px;
        padding: 0 17px;
        font-size: 16px;
    }

    .hero {
        min-height: 575px;
    }

    .hero__decor--left {
        top: 0px;
        left: -50px;
        width: 460px;
    }

    .hero__decor--right {
        top: 150px;
        right: -62px;
        width: 450px;
    }

    .hero__inner {
        padding-top: 227px;
    }

    .hero__text {
        grid-column: 1 / span 5;
        width: 460px;
        font-size: 12px;
    }

    .hero__title {
        grid-column: 1 / span 7;
        max-width: 665px;
        margin-bottom: 60px;
        font-size: 48px;
        line-height: 1;
    }

    .hero__icon {
        width: 37px;
        height: 38px;
        margin-left: 4px;
    }

    .hero__button {
        grid-column: 1 / span 3;
        min-width: 180px;
        min-height: 50px;
        font-size: 16px;
    }

    .about-posting {
        margin-top: 70px;
        margin-bottom: 100px;
    }

    .about-posting__inner {
        padding-top: 30px;
    }

    .about-posting__lead,
    .about-posting__content p {
        font-size: 16px;
        line-height: 1;
    }

    .about-posting__lead--left,
    .about-posting__title {
        grid-column: 1 / span 4;
    }

    .about-posting__lead--right,
    .about-posting__content {
        grid-column: 5 / span 4;
    }

    .about-posting__title {
        margin-top: 62px;
        font-size: 28px;
    }

    .about-posting__content {
        gap: 20px;
        margin-top: 62px;
    }
}

@media (max-width: 767px) {
    :root {
        --grid-side: 20px;
        --grid-gap: 8px;
    }

    .container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 0;
    }

    .header {
        top: 39px;
    }

    .header__logo {
        grid-column: 1 / span 2;
        width: 116px;
    }

    .header__nav,
    .header__actions {
        display: none;
    }

    .header__burger {
        grid-column: 4 / span 1;
        justify-self: end;
        display: block;
        width: 26px;
        height: 20px;
        padding: 0;
        border: 0;
        color: #000000;
        background: transparent;
    }

    .header__burger img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .mobile-menu {
        position: fixed;
        z-index: 20;
        top: 0;
        right: 0;
        display: block;
        width: 292px;
        max-width: calc(100vw - 20px);
        height: 100vh;
        height: 100svh;
        padding: 68px 35px 32px;
        border-radius: 10px 0 0 10px;
        background: #ffffff;
        box-shadow: 0 9px 15.3px rgba(94, 76, 224, 0.15);
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .is-mobile-menu-open .mobile-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu__close {
        position: absolute;
        top: 44px;
        right: 31px;
        width: 18px;
        height: 18px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .mobile-menu__close::before,
    .mobile-menu__close::after {
        content: "";
        position: absolute;
        top: 8px;
        left: -2px;
        width: 23px;
        height: 2px;
        border-radius: 999px;
        background: #000000;
    }

    .mobile-menu__close::before {
        transform: rotate(45deg);
    }

    .mobile-menu__close::after {
        transform: rotate(-45deg);
    }

    .mobile-menu__list,
    .mobile-menu__sublist {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu__list {
        display: grid;
        gap: 23px;
        color: #000000;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
    }

    .mobile-menu__sublist {
        display: grid;
        gap: 14px;
        margin-top: 10px;
        color: #424242;
        font-size: 12px;
        font-weight: 500;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero__decor--left {
        display: none;
    }

    .hero__decor--left-mobile {
        display: block;
        top: 0;
        left: 0;
        width: 280px;
    }

    .hero__decor--right {
        top: 360px;
        right: -40px;
        width: 700px;
    }

    .hero__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 0;
        padding-bottom: 49px;
    }

    .hero__text {
        width: 100%;
        margin-top: auto;
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 1.1;
    }

    .hero__title {
        max-width: 100%;
        margin-bottom: 0;
        font-size: 26px;
        line-height: 1;
    }

    .hero__title::after {
        content: "";
        display: block;
        height: 30vh;
        height: 30svh;
    }

    .hero__icon {
        width: 24px;
        height: 24px;
        margin-left: 2px;
    }

    .hero__button {
        align-self: flex-start;
        width: 180px;
        min-width: 0;
        min-height: 48px;
        margin-top: 0;
        padding: 0 17px;
        font-size: 16px;
        white-space: nowrap;
    }

    .about-posting {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .about-posting__inner {
        display: grid;
        padding-top: 13px;
        padding-bottom: 20px;
    }

    .about-posting__lead,
    .about-posting__content p {
        font-size: 14px;
        line-height: 1.2;
    }

    .about-posting__lead--left,
    .about-posting__lead--right,
    .about-posting__title,
    .about-posting__content {
        grid-column: 1 / -1;
    }

    .about-posting__lead--right {
        margin-top: 25px;
    }

    .about-posting__title {
        margin-top: 45px;
        font-size: 22px;
    }

    .about-posting__content {
        gap: 14px;
        margin-top: 25px;
    }
}

@media (max-width: 360px) {
    body {
        font-size: 12px;
    }

    .hero__title {
        font-size: 26px;
        line-height: 1;
    }

}

@media (max-width: 1440px) {
    .audience__inner {
        width: calc(100% - 32px);
    }

    .audience__grid {
        min-height: 708px;
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .audience__intro {
        grid-column: 1 / span 5;
    }

    .audience__title {
        max-width: 430px;
        font-size: 38px;
    }

    .audience__text,
    .audience__note {
        font-size: 18px;
        line-height: 1;
    }

    .audience__text {
        max-width: 430px;
        margin-top: 24px;
    }

    .audience__note {
        grid-column: 1 / span 5;
        max-width: 510px;
    }

    .audience__cards {
        grid-column: 8 / span 6;
        gap: 22px;
    }

    .audience-card {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 26px;
        min-height: 124px;
        padding: 26px;
        border-radius: 12px;
    }

    .audience-card__icon {
        width: 50px;
        height: 50px;
    }

    .audience-card__icon img {
        width: 23px;
        height: 23px;
    }

    .audience-card__title {
        font-size: 24px;
    }

    .audience-card__text {
        margin-top: 16px;
        font-size: 18px;
        line-height: 1;
    }
}

@media (max-width: 1280px) {
    .audience__cards {
        grid-column: 8 / span 6;
        gap: 17px;
    }
}

@media (max-width: 1024px) {
    .audience {
        margin-bottom: 100px;
    }

    .audience__inner {
        width: calc(100% - 16px);
    }

    .audience__grid {
        min-height: 720px;
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .audience__intro,
    .audience__cards,
    .audience__note {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .audience__title {
        max-width: 360px;
        font-size: 28px;
    }

    .audience__text,
    .audience__note {
        font-size: 16px;
        line-height: 1;
    }

    .audience__text {
        max-width: 650px;
        margin-top: 14px;
    }

    .audience__cards {
        gap: 10px;
        margin-top: 52px;
    }

    .audience-card {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 18px;
        min-height: 96px;
        padding: 18px;
        border-radius: 12px;
    }

    .audience-card__icon {
        width: 50px;
        height: 50px;
    }

    .audience-card__icon img {
        width: 23px;
        height: 23px;
    }

    .audience-card__title {
        font-size: 20px;
    }

    .audience-card__text {
        max-width: none;
        margin-top: 12px;
        font-size: 16px;
        line-height: 1;
    }

    .audience__note {
        grid-row: auto;
        align-self: auto;
        max-width: 620px;
        margin-top: 52px;
    }
}

@media (max-width: 767px) {
    .audience {
        margin-bottom: 80px;
    }

    .audience__inner {
        width: 100%;
        border-radius: 12px;
    }

    .audience__grid {
        min-height: 608px;
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .audience__title {
        max-width: 280px;
        font-size: 22px;
    }

    .audience__text,
    .audience__note {
        font-size: 10px;
        line-height: 1;
    }

    .audience__text {
        max-width: 280px;
        margin-top: 10px;
    }

    .audience__cards {
        gap: 10px;
        margin-top: 30px;
    }

    .audience-card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
        min-height: 90px;
        padding: 16px;
        border-radius: 12px;
    }

    .audience-card__icon {
        width: 40px;
        height: 40px;
    }

    .audience-card__icon img {
        width: 18px;
        height: 18px;
    }

    .audience-card__title {
        font-size: 16px;
    }

    .audience-card__text {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1;
    }

    .audience__note {
        max-width: 280px;
        margin-top: 28px;
    }
}

@media (max-width: 1440px) {
    .service-features {
        margin-bottom: 128px;
    }

    .service-features__heading {
        grid-column: 4 / span 8;
    }

    .service-features__title {
        max-width: 620px;
        font-size: 38px;
    }

    .service-features__subtitle {
        max-width: 620px;
        margin-top: 20px;
        font-size: 18px;
        line-height: 1;
    }

    .service-features__cards {
        grid-column: 1 / -1;
        gap: 24px 25px;
        margin-top: 94px;
    }

    .service-feature-card {
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 32px;
        row-gap: 24px;
        min-height: 205px;
        padding: 28px;
    }

    .service-feature-card__icon {
        width: 56px;
        height: 56px;
    }

    .service-feature-card__icon img {
        width: 25px;
        height: 25px;
    }

    .service-feature-card__title {
        max-width: 420px;
        font-size: 24px;
    }

    .service-feature-card__text {
        max-width: 480px;
        font-size: 18px;
        line-height: 1;
    }
}

@media (max-width: 1280px) {
    .service-features__cards {
        gap: 10px;
        margin-top: 54px;
    }

    .service-feature-card {
        column-gap: 28px;
        min-height: 166px;
        padding: 28px;
    }

    .service-feature-card__title {
        max-width: 360px;
        font-size: 22px;
    }

    .service-feature-card__text {
        max-width: 440px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .service-features {
        margin-bottom: 100px;
    }

    .service-features__heading {
        grid-column: 2 / span 6;
    }

    .service-features__title {
        max-width: 440px;
        font-size: 24px;
        line-height: 1.05;
    }

    .service-features__subtitle {
        max-width: 390px;
        margin-top: 12px;
        font-size: 14px;
    }

    .service-features__cards {
        grid-column: 1 / -1;
        gap: 10px;
        margin-top: 45px;
    }

    .service-feature-card {
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 10px;
        row-gap: 24px;
        min-height: 160px;
        padding: 18px;
        border-radius: 10px;
    }

    .service-feature-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }

    .service-feature-card__icon img {
        width: 20px;
        height: 20px;
    }

    .service-feature-card__title {
        max-width: none;
        font-size: 18px;
    }

    .service-feature-card__text {
        max-width: none;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .service-features {
        margin-bottom: 80px;
    }

    .service-features__heading,
    .service-features__cards {
        grid-column: 1 / -1;
    }

    .service-features__title {
        max-width: 300px;
        font-size: 22px;
    }

    .service-features__subtitle {
        max-width: 280px;
        margin-top: 10px;
        font-size: 10px;
    }

    .service-features__cards {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 42px;
    }

    .service-feature-card {
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: 10px;
        row-gap: 16px;
        min-height: 101px;
        padding: 16px;
        border-radius: 10px;
    }

    .service-feature-card__icon {
        width: 40px;
        height: 40px;
    }

    .service-feature-card__icon img {
        width: 18px;
        height: 18px;
    }

    .service-feature-card__title {
        font-size: 16px;
    }

    .service-feature-card__text {
        font-size: 12px;
        line-height: 1;
    }
}

@media (max-width: 360px) {
    .service-features__title {
        max-width: 240px;
        font-size: 18px;
    }

    .service-features__subtitle {
        max-width: 230px;
        font-size: 7px;
    }

    .service-features__cards {
        margin-top: 42px;
    }

    .service-feature-card {
        min-height: 101px;
        padding: 14px 16px;
    }

    .service-feature-card__title {
        font-size: 12px;
    }

    .service-feature-card__text {
        font-size: 9px;
    }
}

@media (max-width: 1440px) {
    .workflow {
        margin-bottom: 128px;
    }

    .workflow__heading {
        grid-column: 4 / span 8;
    }

    .workflow__title {
        max-width: 560px;
        font-size: 34px;
    }

    .workflow__subtitle {
        max-width: 620px;
        margin-top: 14px;
        font-size: 16px;
        line-height: 1;
    }

    .workflow__steps {
        grid-column: 1 / -1;
        gap: 70px;
        margin-top: 94px;
    }

    .workflow-step {
        grid-template-columns: repeat(2, minmax(0, 500px));
        column-gap: 100px;
    }

    .workflow-step__media,
    .workflow-step--reverse .workflow-step__content {
        grid-column: 1;
    }

    .workflow-step__content,
    .workflow-step--reverse .workflow-step__media {
        grid-column: 2;
    }

    .workflow-step__media {
        min-height: 500px;
    }

    .workflow-step__number {
        min-width: 45px;
        min-height: 25px;
        font-size: 14px;
    }

    .workflow-step__title {
        margin-top: 36px;
        font-size: 26px;
    }

    .workflow-step__text {
        gap: 18px;
        margin-top: 28px;
        font-size: 18px;
        line-height: 1;
    }
}

@media (max-width: 1280px) {
    .workflow__title {
        max-width: 500px;
        font-size: 30px;
    }

    .workflow__subtitle {
        max-width: 610px;
        font-size: 14px;
    }

    .workflow__steps {
        margin-top: 58px;
    }

    .workflow-step {
        grid-template-columns: repeat(2, minmax(0, 446px));
        column-gap: 80px;
    }

    .workflow-step__media {
        min-height: 446px;
    }

    .workflow-step__title {
        margin-top: 32px;
        font-size: 24px;
    }

    .workflow-step__text {
        margin-top: 26px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .workflow {
        margin-bottom: 100px;
    }

    .workflow__heading {
        grid-column: 2 / span 6;
    }

    .workflow__title {
        max-width: 420px;
        font-size: 22px;
    }

    .workflow__subtitle {
        max-width: 470px;
        margin-top: 10px;
        font-size: 14px;
    }

    .workflow__steps {
        grid-column: 1 / -1;
        gap: 42px 24px;
        margin-top: 46px;
    }

    .workflow-step {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
    }

    .workflow-step__media,
    .workflow-step--reverse .workflow-step__content {
        grid-column: 1;
    }

    .workflow-step__content,
    .workflow-step--reverse .workflow-step__media {
        grid-column: 2;
    }

    .workflow-step__media {
        min-height: 205px;
        border-radius: 12px;
    }

    .workflow-step__number {
        min-width: 34px;
        min-height: 24px;
        border-radius: 6px;
        font-size: 12px;
    }

    .workflow-step__title {
        margin-top: 20px;
        font-size: 22px;
    }

    .workflow-step__text {
        gap: 14px;
        margin-top: 16px;
        font-size: 16px;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .workflow {
        margin-bottom: 80px;
    }

    .workflow__heading,
    .workflow__steps {
        grid-column: 1 / -1;
    }

    .workflow__title {
        max-width: 300px;
        font-size: 22px;
    }

    .workflow__subtitle {
        max-width: 260px;
        margin-top: 8px;
        font-size: 10px;
    }

    .workflow__steps {
        gap: 40px;
        margin-top: 42px;
    }

    .workflow-step,
    .workflow-step--reverse {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .workflow-step__media,
    .workflow-step__content,
    .workflow-step--reverse .workflow-step__media,
    .workflow-step--reverse .workflow-step__content {
        grid-column: 1;
        grid-row: auto;
    }

    .workflow-step__media {
        min-height: 224px;
        border-radius: 12px;
    }

    .workflow-step__number {
        min-width: 38px;
        min-height: 24px;
        font-size: 12px;
    }

    .workflow-step__title {
        margin-top: 18px;
        font-size: 18px;
    }

    .workflow-step__text {
        gap: 12px;
        margin-top: 16px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .workflow__title {
        max-width: 300px;
        font-size: 18px;
    }

    .workflow__subtitle {
        max-width: 240px;
        font-size: 7px;
    }

    .workflow-step__media {
        min-height: 224px;
    }

    .workflow-step__title {
        font-size: 16px;
    }

    .workflow-step__text {
        font-size: 10px;
    }
}

@media (max-width: 1440px) {
    .advantages {
        margin-bottom: 128px;
        padding: 80px 0 120px;
    }

    .advantages__heading {
        grid-column: 4 / span 8;
    }

    .advantages__title {
        max-width: 440px;
        font-size: 34px;
    }

    .advantages__subtitle {
        max-width: 560px;
        margin-top: 14px;
        font-size: 16px;
        line-height: 1;
    }

    .advantages__cards {
        grid-column: 2 / span 12;
        gap: 24px;
        margin-top: 88px;
    }

    .advantage-card {
        min-height: 312px;
        padding: 55px;
    }

    .advantage-card--with-list {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 80px;
    }

    .advantage-card__icon {
        width: 60px;
        height: 60px;
    }

    .advantage-card__icon img {
        width: 30px;
        height: 30px;
    }

    .advantage-card__title {
        margin-top: 30px;
        font-size: 22px;
    }

    .advantage-card__text {
        gap: 18px;
        margin-top: 30px;
        font-size: 16px;
        line-height: 1;
    }

    .advantage-card__label {
        min-height: 24px;
        font-size: 14px;
    }

    .advantage-card__list {
        gap: 24px;
        margin-top: 42px;
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .advantages {
        padding-top: 70px;
    }

    .advantages__cards {
        grid-column: 2 / span 12;
        gap: 16px;
        margin-top: 58px;
    }

    .advantage-card {
        min-height: 287px;
        padding: 32px;
    }

    .advantage-card--with-list {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 80px;
    }

    .advantage-card__text {
        font-size: 14px;
    }

    .advantage-card__list {
        gap: 20px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .advantages {
        margin-bottom: 100px;
        padding: 100px 0;
    }

    .advantages__heading {
        grid-column: 2 / span 6;
    }

    .advantages__title {
        max-width: 420px;
        font-size: 28px;
    }

    .advantages__subtitle {
        max-width: 520px;
        margin-top: 14px;
        font-size: 14px;
    }

    .advantages__cards {
        grid-column: 1 / -1;
        gap: 14px;
        margin-top: 50px;
    }

    .advantage-card {
        min-height: 225px;
        padding: 24px;
        border-radius: 12px;
    }

    .advantage-card--with-list {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px;
    }

    .advantage-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 8px;
    }

    .advantage-card__icon img {
        width: 28px;
        height: 28px;
    }

    .advantage-card__title {
        margin-top: 28px;
        font-size: 20px;
    }

    .advantage-card__text {
        gap: 14px;
        margin-top: 22px;
        font-size: 16px;
    }

    .advantage-card__label {
        min-height: 24px;
        font-size: 12px;
    }

    .advantage-card__list {
        gap: 23px;
        margin-top: 52px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .advantages {
        margin-bottom: 80px;
        padding: 80px 0 80px;
    }

    .advantages__heading,
    .advantages__cards {
        grid-column: 1 / -1;
    }

    .advantages__title {
        max-width: 310px;
        font-size: 22px;
    }

    .advantages__subtitle {
        max-width: 270px;
        margin-top: 10px;
        font-size: 10px;
    }

    .advantages__cards {
        gap: 12px;
        margin-top: 50px;
    }

    .advantage-card,
    .advantage-card--with-list {
        display: block;
        min-height: 0;
        padding: 24px;
        border-radius: 10px;
    }

    .advantage-card__icon {
        float: left;
        width: 40px;
        height: 40px;
        margin-right: 20px;
    }

    .advantage-card__icon img {
        width: 20px;
        height: 20px;
    }

    .advantage-card__title {
        min-height: 40px;
        margin-top: 0;
        font-size: 16px;
    }

    .advantage-card__text {
        clear: both;
        gap: 12px;
        margin-top: 22px;
        font-size: 12px;
        line-height: 1;
    }

    .advantage-card__aside {
        padding-top: 22px;
    }

    .advantage-card__label {
        min-height: 24px;
        font-size: 10px;
    }

    .advantage-card__list {
        gap: 14px;
        margin-top: 20px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .advantages__title {
        font-size: 18px;
    }

    .advantages__subtitle {
        max-width: 230px;
        font-size: 7px;
    }

    .advantage-card {
        padding: 20px;
    }

    .advantage-card__icon {
        margin-right: 16px;
    }

    .advantage-card__title {
        font-size: 14px;
    }

    .advantage-card__text {
        font-size: 10px;
    }

    .advantage-card__list {
        font-size: 12px;
    }
}

@media (max-width: 1440px) {
    .features {
        margin-bottom: 128px;
    }

    .features__title {
        grid-column: 5 / span 6;
        font-size: 34px;
    }

    .features__cards {
        grid-column: 1 / -1;
        gap: 12px;
        margin-top: 75px;
    }

    .feature-card {
        height: 485px;
        border-radius: 12px;
    }

    .feature-card__header {
        min-height: 85px;
        padding: 0 24px;
        font-size: 18px;
    }

    .feature-card__title {
        max-width: none;
    }

    .feature-card__toggle {
        width: 36px;
        height: 36px;
        background-size: 16px 16px;
    }

    .feature-card__body {
        height: 400px;
    }

    .feature-card__text {
        padding: 16px 18px 20px;
        font-size: 16px;
        line-height: 1;
    }
}

@media (max-width: 1280px) {
    .features__title {
        font-size: 30px;
    }

    .features__cards {
        gap: 10px;
        margin-top: 65px;
    }

    .feature-card {
        height: 465px;
    }

    .feature-card__header {
        min-height: 78px;
        padding: 0 20px;
        font-size: 16px;
    }

    .feature-card__body {
        height: 387px;
    }

    .feature-card__text {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .features {
        margin-bottom: 100px;
    }

    .features__title {
        grid-column: 3 / span 4;
        font-size: 22px;
    }

    .features__cards {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 32px;
    }

    .feature-card {
        height: 424px;
        border-radius: 10px;
    }

    .feature-card__header {
        min-height: 72px;
        padding: 0 16px;
        font-size: 16px;
    }

    .feature-card__title {
        max-width: none;
    }

    .feature-card__toggle {
        width: 34px;
        height: 34px;
        background-size: 14px 14px;
    }

    .feature-card__body {
        height: 352px;
    }

    .feature-card__text {
        padding: 16px 14px 18px;
        font-size: 14px;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .features {
        margin-bottom: 80px;
    }

    .features__title,
    .features__cards {
        grid-column: 1 / -1;
    }

    .features__title {
        font-size: 18px;
    }

    .features__cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .feature-card {
        min-height: 342px;
        height: 342px;
        border-radius: 10px;
    }

    .feature-card.is-open {
        height: 342px;
    }

    .feature-card__header {
        min-height: 52px;
        padding: 0 14px;
        font-size: 12px;
    }

    .feature-card__title {
        max-width: none;
    }

    .feature-card__toggle {
        width: 29px;
        height: 29px;
        background-size: 12px 12px;
    }

    .feature-card__body {
        height: 290px;
    }

    .feature-card.is-open .feature-card__body {
        height: 290px;
    }

    .feature-card__text {
        padding: 13px 12px 16px;
        font-size: 12px;
        line-height: 1;
    }
}

@media (max-width: 360px) {
    .features__title {
        font-size: 16px;
    }

    .feature-card__text {
        font-size: 9px;
    }
}

@media (max-width: 1440px) {
    .safety {
        margin-bottom: 128px;
        padding: 100px 0;
    }

    .safety__heading {
        grid-column: 1 / span 6;
        gap: 24px;
    }

    .safety__icon {
        width: 76px;
        height: 76px;
    }

    .safety__content {
        gap: 22px;
        margin-top: 90px;
        font-size: 18px;
        line-height: 1;
    }

    .safety__content--left {
        grid-column: 1 / span 6;
        padding-right: 0;
    }

    .safety__content--right {
        grid-column: 8 / span 5;
        padding-left: 0;
    }
}

@media (max-width: 1280px) {
    .safety__heading {
        grid-column: 1 / span 7;
    }

    .safety__content {
        font-size: 16px;
    }

    .safety__content--left {
        grid-column: 1 / span 6;
        padding-right: 0;
    }

    .safety__content--right {
        grid-column: 8 / span 6;
    }
}

@media (max-width: 1024px) {
    .safety {
        margin-bottom: 100px;
        padding: 80px 0;
    }

    .safety__heading {
        grid-column: 1 / span 6;
        gap: 18px;
    }

    .safety__icon {
        width: 58px;
        height: 58px;
    }

    .safety__content {
        gap: 18px;
        margin-top: 45px;
        font-size: 16px;
        line-height: 1;
    }

    .safety__content--left {
        grid-column: 1 / span 4;
        padding-right: 0;
    }

    .safety__content--right {
        grid-column: 5 / span 4;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .safety {
        margin-bottom: 80px;
        padding: 48px 0;
    }

    .safety__heading,
    .safety__content--left,
    .safety__content--right {
        grid-column: 1 / -1;
    }

    .safety__heading {
        gap: 18px;
    }

    .safety__icon {
        width: 58px;
        height: 58px;
    }

    .safety__content {
        gap: 22px;
        margin-top: 48px;
        font-size: 14px;
        line-height: 1.1;
    }

    .safety__content--right {
        margin-top: 22px;
    }
}

@media (max-width: 1440px) {
    .manual-risks {
        margin-bottom: 128px;
    }

    .manual-risks__heading {
        grid-column: 4 / span 8;
    }

    .manual-risks__title {
        max-width: 680px;
    }

    .manual-risks__subtitle {
        max-width: 560px;
        margin-top: 20px;
        font-size: 18px;
        line-height: 1;
    }

    .manual-risks__cards {
        grid-column: 1 / -1;
        gap: 16px;
        margin-top: 92px;
    }

    .manual-risk-card {
        min-height: 390px;
        padding: 30px;
    }

    .manual-risk-card__head {
        min-height: 100px;
        padding-bottom: 28px;
    }

    .manual-risk-card__title {
        max-width: 240px;
    }

    .manual-risk-card__icon {
        width: 50px;
        height: 50px;
    }

    .manual-risk-card__text {
        gap: 22px;
        margin-top: 24px;
        font-size: 18px;
        line-height: 1;
    }
}

@media (max-width: 1280px) {
    .manual-risks__title {
        max-width: 640px;
    }

    .manual-risks__subtitle {
        max-width: 540px;
    }

    .manual-risks__cards {
        gap: 12px;
        margin-top: 70px;
    }

    .manual-risk-card {
        min-height: 340px;
        padding: 28px;
    }

    .manual-risk-card__head {
        min-height: 96px;
        gap: 18px;
        padding-bottom: 24px;
    }

    .manual-risk-card__title {
        max-width: 210px;
    }

    .manual-risk-card__text {
        gap: 18px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .manual-risks {
        margin-bottom: 100px;
    }

    .manual-risks__heading {
        grid-column: 2 / span 6;
    }

    .manual-risks__title {
        max-width: 520px;
    }

    .manual-risks__subtitle {
        max-width: 470px;
        margin-top: 16px;
        font-size: 14px;
    }

    .manual-risks__cards {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 44px;
    }

    .manual-risk-card {
        min-height: 0;
        padding: 24px;
        border-radius: 12px;
    }

    .manual-risk-card__head {
        min-height: 0;
        align-items: center;
        padding-bottom: 24px;
    }

    .manual-risk-card__title {
        max-width: none;
    }

    .manual-risk-card__text {
        gap: 16px;
        margin-top: 24px;
        font-size: 16px;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .manual-risks {
        margin-bottom: 80px;
    }

    .manual-risks__heading,
    .manual-risks__cards {
        grid-column: 1 / -1;
    }

    .manual-risks__title {
        max-width: 320px;
    }

    .manual-risks__subtitle {
        max-width: 290px;
        margin-top: 18px;
        font-size: 10px;
    }

    .manual-risks__cards {
        gap: 20px;
        margin-top: 52px;
    }

    .manual-risk-card {
        padding: 20px;
        border-radius: 10px;
    }

    .manual-risk-card__head {
        gap: 16px;
        padding-bottom: 22px;
    }

    .manual-risk-card__icon {
        width: 40px;
        height: 40px;
        border-radius: 7px;
    }

    .manual-risk-card__icon img {
        width: 24px;
        height: 24px;
    }

    .manual-risk-card__text {
        gap: 16px;
        margin-top: 22px;
        font-size: 12px;
    }
}

@media (max-width: 1440px) {
    .free-start {
        min-height: 405px;
        padding: 90px 0;
    }

    .free-start__content {
        grid-column: 1 / span 6;
    }

    .free-start__title {
        max-width: 600px;
        font-size: 38px;
    }

    .free-start__button {
        min-width: 196px;
        min-height: 52px;
        margin-top: 88px;
        font-size: 16px;
    }

    .free-start__text {
        grid-column: 8 / span 6;
        gap: 22px;
        font-size: 18px;
        line-height: 1;
    }

    .faq {
        padding: 160px 0 120px;
    }

    .faq__list {
        width: min(822px, 100%);
        margin-top: 100px;
    }

    .faq-item__question {
        font-size: 24px;
        line-height: 1;
    }

    .faq-item__body {
        font-size: 18px;
        line-height: 1;
    }
}

@media (max-width: 1280px) {
    .free-start {
        min-height: 370px;
        padding: 78px 0;
    }

    .free-start__content {
        grid-column: 1 / span 6;
    }

    .free-start__title {
        max-width: 560px;
    }

    .free-start__button {
        margin-top: 70px;
    }

    .free-start__text {
        grid-column: 8 / span 6;
        font-size: 16px;
    }

    .faq {
        padding: 120px 0 70px;
    }

    .faq__list {
        width: min(742px, 100%);
        margin-top: 70px;
    }

    .faq-item {
        padding: 26px 32px;
    }

    .faq-item__question {
        font-size: 24px;
        line-height: 1;
    }

    .faq-item__body {
        font-size: 18px;
        line-height: 1;
    }
}

@media (max-width: 1024px) {
    .free-start {
        min-height: 535px;
        padding: 65px 0;
        background-image: url("../img/bg-free-mobile.png");
    }

    .free-start__content {
        grid-column: 1 / span 3;
        display: flex;
        flex-direction: column;
        min-height: 405px;
    }

    .free-start__title {
        max-width: 280px;
        font-size: 42px;
    }

    .free-start__button {
        min-width: 210px;
        min-height: 60px;
        margin-top: auto;
        font-size: 20px;
    }

    .free-start__text {
        grid-column: 5 / span 4;
        gap: 28px;
        font-size: 20px;
        line-height: 1.1;
    }

    .faq {
        padding: 85px 0 80px;
    }

    .faq__list {
        width: 100%;
        margin-top: 54px;
    }

    .faq-item {
        padding: 22px 24px;
    }

    .faq-item__button {
        gap: 18px;
    }

    .faq-item__question {
        font-size: 18px;
    }

    .faq-item__icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .faq-item__body {
        max-width: none;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .free-start {
        padding: 55px 0 64px;
        background-image: url("../img/bg-free-mobile.png");
    }

    .free-start__content,
    .free-start__text {
        grid-column: 1 / -1;
    }

    .free-start__content {
        display: contents;
        min-height: 0;
    }

    .free-start__title {
        grid-column: 1 / -1;
        order: 1;
        max-width: 320px;
        font-size: 26px;
    }

    .free-start__text {
        order: 2;
        gap: 24px;
        margin-top: 45px;
        font-size: 14px;
        line-height: 1.1;
    }

    .free-start__button {
        grid-column: auto;
        order: 3;
        justify-self: start;
        min-width: 208px;
        min-height: 58px;
        margin-top: 40px;
        font-size: 18px;
        white-space: nowrap;
    }

    .faq {
        padding: 64px 0;
    }

    .faq__title {
        max-width: 320px;
        letter-spacing: 0;
    }

    .faq__list {
        gap: 10px;
        margin-top: 42px;
    }

    .faq-item {
        padding: 18px;
        border-radius: 8px;
    }

    .faq-item__button {
        align-items: flex-start;
        gap: 14px;
    }

    .faq-item__question {
        font-size: 16px;
    }

    .faq-item__icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .faq-item__icon::before {
        width: 13px;
        height: 8px;
    }

    .faq-item__body {
        margin-top: 14px;
        font-size: 12px;
    }
}

.about-posting__title,
.audience__title,
.service-features__title,
.workflow__title,
.advantages__title,
.features__title,
.safety__title,
.manual-risks__title,
.faq__title {
    font-size: 48px;
    line-height: 1;
}

.audience-card__title,
.service-feature-card__title,
.workflow-step__title,
.advantage-card__title,
.feature-card__title,
.manual-risk-card__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

@media (max-width: 1440px) {
    .about-posting__title,
    .audience__title,
    .service-features__title,
    .workflow__title,
    .advantages__title,
    .features__title,
    .safety__title,
    .manual-risks__title,
    .faq__title {
        font-size: 38px;
        line-height: 1;
    }

    .audience-card__title,
    .service-feature-card__title,
    .workflow-step__title,
    .advantage-card__title,
    .feature-card__title,
    .manual-risk-card__title {
        font-size: 24px;
        line-height: 1;
    }
}

@media (max-width: 1024px) {
    .about-posting__title,
    .audience__title,
    .service-features__title,
    .workflow__title,
    .advantages__title,
    .features__title,
    .safety__title,
    .manual-risks__title,
    .faq__title {
        font-size: 28px;
        line-height: 1;
    }

    .audience-card__title,
    .service-feature-card__title,
    .workflow-step__title,
    .advantage-card__title,
    .feature-card__title,
    .manual-risk-card__title {
        font-size: 20px;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .about-posting__title,
    .audience__title,
    .service-features__title,
    .workflow__title,
    .advantages__title,
    .features__title,
    .safety__title,
    .manual-risks__title,
    .faq__title {
        font-size: 22px;
        line-height: 1;
    }

    .audience-card__title,
    .service-feature-card__title,
    .workflow-step__title,
    .advantage-card__title,
    .feature-card__title,
    .manual-risk-card__title {
        font-size: 16px;
        line-height: 1;
    }
}

.faq__title {
    line-height: 1.08;
    padding-bottom: 0.12em;
}

@media (max-width: 1440px) {
    .soon-platforms {
        padding-bottom: 160px;
    }

    .footer {
        align-items: center;
        gap: 70px;
        padding-top: 120px;
    }

    .footer__content {
        gap: 70px;
    }

    .footer__nav {
        flex-wrap: nowrap;
        gap: 0;
    }

    .footer__logo {
        width: 197px;
    }

    .footer__description {
        width: 500px;
        font-size: 12px;
    }

    .footer__group {
        gap: 20px;
        width: auto;
    }

    .footer__title,
    .footer__list {
        font-size: 16px;
    }

    .footer__list {
        gap: 20px;
    }

    .footer__bottom {
        font-size: 12px;
    }

    .soon-platforms__title {
        font-size: 24px;
    }

    .soon-platforms__list {
        gap: clamp(28px, 4vw, 70px);
    }
}

@media (max-width: 1280px) {
    .soon-platforms {
        padding-bottom: 120px;
    }

    .footer {
        gap: 70px;
        padding-top: 100px;
    }

    .footer__content {
        gap: 70px;
    }

    .soon-platforms__title {
        font-size: 24px;
    }

    .soon-platforms__item--linkedin {
        width: 160px;
    }

    .soon-platforms__item--pinterest {
        width: 169px;
    }

    .soon-platforms__item--rutube {
        width: 159px;
    }

    .soon-platforms__item--youtube {
        width: 173px;
    }

    .soon-platforms__item--twitter {
        width: 172px;
    }
}

@media (max-width: 1024px) {
    .soon-platforms {
        gap: 30px;
        padding-bottom: 100px;
    }

    .footer {
        gap: 50px;
        padding-top: 60px;
    }

    .footer__content {
        gap: 50px;
    }

    .footer__top {
        align-items: center;
    }

    .footer__logo {
        width: 141px;
    }

    .footer__description {
        width: 392px;
        font-size: 12px;
        line-height: 1;
    }

    .footer__nav {
        display: grid;
        grid-template-columns: 135px 52px minmax(260px, 1fr);
        justify-content: start;
        gap: 50px 100px;
    }

    .footer__group {
        width: 100%;
    }

    .footer__group--docs {
        grid-column: 1;
        margin-right: 0;
    }

    .footer__group--details {
        grid-column: 3;
    }

    .footer__group--docs {
        width: 300px;
    }

    .footer__bottom {
        align-items: center;
        flex-direction: row;
        gap: 40px;
        white-space: nowrap;
    }

    .soon-platforms__list {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
    }

    .soon-platforms__title {
        font-size: 20px;
    }

    .soon-platforms__item--linkedin {
        width: 114px;
    }

    .soon-platforms__item--pinterest {
        width: 119px;
    }

    .soon-platforms__item--rutube {
        width: 102px;
    }

    .soon-platforms__item--youtube {
        width: 116px;
    }

    .soon-platforms__item--twitter {
        width: 120px;
    }
}

@media (max-width: 767px) {
    .soon-platforms {
        gap: 25px;
        padding: 0 20px 80px;
    }

    .footer {
        gap: 40px;
        padding-top: 40px;
    }

    .footer__content {
        gap: 40px;
        width: min(320px, calc(100% - 40px));
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .footer__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 155px));
        gap: 30px 10px;
        width: 100%;
    }

    .footer__logo {
        width: 91px;
    }

    .footer__description {
        width: 100%;
        font-size: 10px;
        line-height: 1;
    }

    .footer__group {
        gap: 15px;
        margin-right: 0;
        width: 100%;
    }

    .footer__group--details {
        grid-column: 1 / -1;
    }

    .footer__group--docs {
        grid-column: auto;
        width: 100%;
    }

    .footer__title,
    .footer__list {
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
    }

    .footer__list {
        gap: 15px;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        font-size: 10px;
        line-height: 1;
        white-space: normal;
    }

    .footer__art {
        height: 57px;
        object-fit: cover;
        object-position: top center;
    }

    .soon-platforms__title {
        font-size: 10px;
        font-weight: 400;
    }

    .soon-platforms__list {
        flex-wrap: nowrap;
        gap: 0;
        width: min(100%, 320px);
    }

    .soon-platforms__item--linkedin {
        width: 48px;
    }

    .soon-platforms__item--pinterest {
        width: 51px;
    }

    .soon-platforms__item--rutube {
        width: 48px;
    }

    .soon-platforms__item--youtube {
        width: 52px;
    }

    .soon-platforms__item--twitter {
        width: 52px;
    }
}
