*,
*:before,
*:after {
    font-family: inherit;
    color: inherit;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

header {
    position: sticky;
    top: 0;
    z-index: 15;
    background: #FFFFFF;
}

body {
    line-height: 1;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0;
    color: #000000;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

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

textarea {
    resize: none;
}

button {
    cursor: pointer;
    background-color: transparent;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
    margin: 0;
}

picture {
    display: block;
}

main {
    position: relative;
}

/* === Кнопки === */

.btn {
    display: block;
    text-align: center;
    outline: transparent;
    border: 0 solid transparent;
    transition: .2s outline, .2s border, .2s color, .2s background;
    outline: 1px solid transparent;
}

.btn._primary {
    background: #005BFF;
    color: #FFFFFF;
    border-radius: 8px;
}

.btn._primary:hover {
    background: #0153E5;
}

.btn._secondary {
    border: 1px solid #DCDCDC;
    border-radius: 8px;
}

.btn._secondary:hover {
    background: #F5F5F7;
}

.btn._info {
    border: 1px solid #005BFF;
    border-radius: 8px;
}

.btn._info:hover {
    outline: 1px solid #005BFF;
}

.btn._ai {
    color: #FFFFFF;
    background: #E21179;
    border-radius: 8px;
    width: fit-content;
    white-space: nowrap;
}

.btn._ai:hover {
    background: #E30373;
}

.btn._s {
    padding: 14px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.btn._m {
    padding: 14px 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.btn._l {
    padding: 18px 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.btn._xl {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

/*!!! FONS !!!*/

.header__logo {
    font-weight: 800;
    font-size: 28px;
    line-height: 100%;
    vertical-align: middle;
    color: #005BFF;
    margin-right: 32px;
}

.header__burger-icon {
    cursor: pointer;
    height: 16px;
    position: relative;
    width: 20px;
    display: none;
    margin-right: 22px;
}

.header__burger-icon .line {
    background-color: rgb(0, 0, 0);
    height: 2px;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    border-radius: 3px;
    transition: transform 0.2s;
}

.header__burger-icon .line:first-child {
    top: 1px;
}

.header__burger-icon .line:nth-child(2) {
    top: 50%;
}

.header__burger-icon .line:nth-child(3) {
    bottom: -1px;
}

.header__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-right: 20px;
}

.text__h1 {
    font-weight: 800;
    font-size: 60px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
}

.hero__h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
    padding-top: 12px;
}

.text__20-regular {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
}

.section__h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
}

/*!!! MAIN STYLE !!!*/

.header__text:hover {
    color: #005BFF;
}

.container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
    max-width: calc(1300px + 42px * 2);
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 0 6px 1px rgba(29,17,51,.04),0 0 8px 2px rgba(9,32,77,.12),0 0 5px -3px rgba(29,17,51,.12);
}

.header__left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header__button.btn {
    padding: 8px 24px;
}

.header__backgraund {
    background: #000000b5;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: none;
}

.modal__menu.active .header__backgraund {
    display: block;
}

.modal__menu {
    position: fixed;
    top: calc(var(--top, -100%) + 78px);
    z-index: 10;
    left: 0;
    right: 0;
}

.modal__menu.active {
    top: 0;
    bottom: 0;
}

.header__modal {
    left: 50%;
    transform: translate(-50%, -100%);
    width: 90%;
    height: max-content;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 0 8px 0 #0000001F;
    position: relative;
    z-index: 12;
}

.modal__menu.active .header__modal {
    top: var(--top, 0);
    transform: translate(-50%, 90px);
}

.header__modal-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 24px;
    padding: 24px;
}

.hero {
    background-image: url("../img/hero-fon.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero__contents {
    position: relative;
    z-index: 3;
}

.hero__content {
    padding-top: 68px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero__p {
    padding-top: 16px;
}

.hero__button {
    margin-top: 32px;
}

.hero__visual-content {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 44px;
    bottom: -1px;
}

.visual__analytics {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF;
    border-radius: 16px 16px 0 0;
    justify-content: center;
    padding: 12px 12px 0;
    display: flex;
    max-width: 964px;
    border-bottom: none;
    z-index: 3;
    backdrop-filter: blur(3px)
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(46, 54, 77, 0.6);
    z-index: 1;
}

.hero__banner-blue {
    background: #005BFF;
    position: absolute;
    border-radius: 12px;
}

.banner__one {
    left: 0;
    top: -8%;
    z-index: 2;
}

.banner__blue-content {
    padding: 16px;
}

.banner__blue-text {
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #FFFFFF;
}

.banner__blue-list {
    margin-top: 8px;
}

.banner__blue-point {
    list-style-type: disc;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    margin-left: 16px;
}

.banner__two {
    z-index: 4;
    top: -7%;
    right: 0;
}

.banner__three {
    z-index: 4;
    top: 38%;
    right: 2%;
}

.hero__white-banners {
    position: absolute;
    z-index: 4;
    bottom: 16%;
    left: 3%;
}

.hero__banner-white {
    background: #FFFFFF;
    border-radius: 12px;
}

.banner__content-white {
    padding: 12px 16px;
}

.banner__white-question {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    vertical-align: middle;
    color: #B2B7BC;
    border: 1px solid #B2B7BC;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.banner__white-texts {
    display: flex;
    justify-content: space-between;
}

.banner__white-text {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
}

.banner__content-white {
    min-width: 200px;
}

.banner__white-numbers {
    display: flex;
    gap: 5px;
    align-items: baseline;
    margin-top: 40px;
}

.banner__white-number {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
}

.banner__white-red,
.banner__white-green {
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
    color: #039855;;
}

.hero__banner-white:last-child {
    margin-top: 12px;
}

.banner__white-red {
    color: #D92D20;
}

.section {
    margin-block: 120px;
}

.section > * {
    opacity: 0;
}

.section__whom-cards {
    display: flex;
    gap: 32px;
    margin-top: 64px;
}

.whom__card {
    border: 1px solid #DCDEE2;
    border-radius: 8px;
    width: 100%;
}

.whom__card-picture {
    background: #F5F5F7;
    border-radius: 12px;
}

.whom__card-contents {
    padding: 24px;
}

.whom__card-h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.whom__card-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
}

.card__picture {
    padding-top: 32px;
    padding-bottom: 32px;
}

.whom__card-picture {
    display: flex;
    justify-content: center;
}

.whom__card-content {
    margin-top: 24px;
}

.profit__card-h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.profit__card-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.profit__card-text-content {
    display: flex;
    gap: 14px;
    align-items: start;
}

.profit__card-texts {
    margin-top: 24px;
}

.profit__card-button {
    margin-top: 32px;
}

.profit__card-text-content:last-child {
    margin-top: 12px;
}

.profit__card-picture-two,
.profit__card-picture {
    background: #F0F5FF;
    border-radius: 8px;
    position: relative;
    width: 50%;
    padding: 30px 30px 0;
    overflow: hidden;
    align-self: stretch;
    min-height: 405px;
}

.real-profit-cards {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.profit__card-content {
    width: 50%;
}

.profit__card-img:first-child {
    position: absolute;
    z-index: 1;
    left: 4.5%;
}

.profit__card-img:nth-child(2) {
    position: absolute;
    left: 9%;
    top: 24%;
    z-index: 2;
}

.profit__card-img:nth-child(3) {
    position: absolute;
    left: 13%;
    top: 41%;
    z-index: 3;
}

.profit__card-img:last-child {
    position: absolute;
    z-index: 4;
    left: 4%;
    bottom: -4px;
}


.profit__card-picture-two {
    padding-bottom: 30px;
}

.profit__card-img-two:first-child {
    position: relative;
    z-index: 1;
}

.profit__card-img-two:nth-child(2) {
    position: absolute;
    bottom: 44px;
    left: 29%;
    z-index: 2;
}

.profit__card-img-two:last-child {
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
    top: 25px;
}

.section__form-analytics {
    background-image: var(--background, url("../img/bg-form.jpg"));
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    margin-bottom: 0 !important;
}

.section__form-analytics::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(46, 54, 77, 0.6);
    z-index: 1;
}

.form-content-h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 52px;
    color: #FFFFFF;
}

.form-content-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
}

.container__form {
    position: relative;
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF;
    border-radius: 16px;
    justify-content: center;
    padding: 12px 12px;
    display: flex;
    z-index: 3;
    backdrop-filter: blur(3px);
    width: 49%;
}

.section__form-form {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 12px;
    width: 100%;
    padding: 40px;
}

.section__form-content {
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-block: 192px;
}

.section__form-input {
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #707070;
    padding: 16px;
    width: 100%;
    transition: .2s color, .2s padding;
}

.section__form-group {
    position: relative;
}

.section__form-group {
    margin-bottom: 16px;
}

.section__form-group:last-child {
    margin-bottom: 0;
}

.section__form-group .section__form-input::placeholder {
    opacity: 0;
}

.section__form-group .section__form-input:not(:placeholder-shown) {
    padding-block: 24px 8px;
    color: black;
}

.section__form-group::before {
    content: attr(data-placeholder);
    position: absolute;
    top: 17px;
    left: 17px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #707070;
    transition: .2s top, .2s font-size, .2s line-height;
    z-index: 1;
}

.section__form-group:has( .section__form-input:not(:placeholder-shown)):before {
    top: 9px;
    font-size: 13px;
    line-height: 16px;
}

.section__form-group[data-error]::after {
    content: attr(data-error);
    display: block;
    color: #FF2B2B;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    padding-top: 2px;
}

.section__form-group[data-error] .section__form-input {
    border-color: #FF2B2B;
}

.form-group {
    position: relative;
}

.help-block {
    position: absolute;
    font-size: 12px;
    color: red;
    visibility: hidden;
    opacity: 0;
}

.form-group.has-error .help-block {
    visibility: visible;
    opacity: 1;
}

.form-group.has-error input {
    border-color: red;
}

.input__first {
    margin-top: unset;
}

.section__form-button {
    margin-top: 16px;
}

.form-content-info {
    margin-top: 12px;
    width: 41.5%;
}

.form-content-texts {
    margin-top: 32px;
}

.form-content-text:last-child {
    margin-top: 12px;
}

.form__polit-conf,
.form__polit-conf-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #707070;
    margin-top: 16px;
}

.form__polit-conf {
    margin-top: unset;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #000000;
}

.orders__profit-comparison {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    background: #FEFACD;
    border-radius: 12px;
    padding: 17px 24px;
    width: fit-content;
    margin-top: 48px;
    white-space: nowrap;
}

.orders__profit-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-top: 32px;
}

.orders__profit-banner {
    background: #F5F5F7;
    padding: 20px;
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    align-items: center;
    margin-top: 16px;
}

.orders__profit-banner:first-child {
    margin-top: unset;
}

.orders__profit-picture {
    padding: 16px;
    border-radius: 12px;
    width: fit-content;
}

.blue {
    background: #005BFF !important;
}

.pink {
    background: #E21179;
}

.purple {
    background: #AC68F5;
}

.green {
    background: #2BA3DF;
}

.orders__profit-banner-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-left: 20px;
}

.section__orders-profit {
    display: flex;
    gap: 64px;
}

.order__h2 {
    text-align: left;
}

.orders__profit-content {
    width: 51%;
}

.section__comparison-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-top: 40px;
}

.section__comparison-block {
    border: 1px solid #DCDEE2;
    position: relative;
    padding: 40px;
    border-radius: 8px;
    counter-reset: section;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    row-gap: 40px;
    width: 50%;
}

.section__comparison-block::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    background-color: #000000;
    border-radius: 50%;
    background-image: url("../svg/emoji-sad.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px;
    margin-right: 20px;
    z-index: 3;
}

.comparison-card-visual {
    background-color: #F5F5F7;
    padding: 20px;
    border-radius: 50%;
    height: 120px;
    width: 120px;
    position: relative;
}

.comparison-card-visual:after {
    counter-increment: section;
    content: counter(section);
    background-color: #000000;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    top: 0;
    left: 0;
}

.comparison-card-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
}

.section__comparison-blocks {
    margin-top: 64px;
}

.comparison-card-h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

.comparison-card-end-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.comparison-card-end {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #F5F5F7;
    border-radius: 12px;
}

.section__comparison-blocks {
    display: flex;
    gap: 64px
}

.open__card {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #005BFF;
    margin-top: -12px;
    display: none;
    cursor: pointer;
}

.color {
    background: #F0F5FF;
}

.stocks:before {
    background-image: url("../svg/check-mark.svg");
    background-color: #005BFF;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
}

.color:after {
    background: #005BFF;
}

.white {
    color: #FFFFFF;
}

.comparison-card:nth-child(odd)::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 0;
    border-top: 2px dashed #DCDCDC;
    transform: translateY(-50%);
}

.comparison-card:nth-child(odd)::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-top: 2px solid #DCDCDC;
    border-right: 2px solid #DCDCDC;
    transform: translateY(-50%) rotate(45deg);
}

.comparison-card:nth-child(1)::before {
    top: 25%;
    left: 46%;
}

.comparison-card:nth-child(1)::after {
    top: 25%;
    left: 38%;
}

.comparison-card:nth-child(3)::before {
    left: 46%;
    top: 75%;
}

.comparison-card:nth-child(3)::after {
    left: 38%;
    top: 75%;
}

.card-clarity {
    background: #F0F5FF;
    padding: 28px 32px;
    border-radius: 16px;
    position: relative;
    height: 100%;
}

.card__clarity-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
}

.section__cards-clarity {
    display: flex;
    gap: 32px;
    margin-top: 64px;
}

.cards-clarity-top {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
    grid-template-columns: 1fr 1fr;
}

.card__clarity-picture {
    margin-top: 64px;
    margin-bottom: -28px;
}

.card-clarity-first::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(180deg, rgba(239, 245, 255, 0) 0%, #EFF5FF 100%);
    pointer-events: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.cards-clarity-left {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.section__cards-clarity > .card-clarity {
    width: calc(30% + 16px);
    height: auto;
}

.card-clarity-block {
    padding: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    border-bottom-right-radius: unset;
}

.card-clarity-block:last-child {
    margin-top: 20px;
}

.card-clarity-end {
    display: flex;
}

.card-clarity-texts {
    width: 55%;
    margin-right: 64px;
}

.card-clarity-block:first-child {
    margin-right: 32px;
}

.card-clarity-block:last-child {
    margin-left: 32px;
}

/* !!! Тарифы !!! */
.tariffs__container {
    display: flex;
    margin-top: 64px;
    gap: 32px;
}

.tariffs__item {
    flex: 1;
    border-radius: 16px;
    padding: 28px 32px 32px;
    box-shadow: 0px 2px 20px 0px #0000001A;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.tariffs__item._recommend {
    border: 1px solid #005BFF;
    position: relative;
}

.tariffs__item._recommend:after {
    position: absolute;
    content: 'Рекомендуем';
    padding: 8px 20px;
    background: #F0F5FF;
    color: #005BFF;
    top: -20px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.tariffs__item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
}

.tariffs__item-description {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.tariffs__item-price {
    margin-top: auto;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

/* !!! Тарифы !!! */

/* !!! не тарифы !!!*/
.work__cards {
    margin-top: 64px;
    display: flex;
    gap: 32px;
}

.work__card {
    padding: 32px 32px 0;
    border-radius: 16px;
    margin-top: unset;
    display: flex;
    flex-direction: column;
    align-items: unset;
    justify-content: space-between;
    overflow: hidden;
    flex: 1;
}

.work__card-number {
    font-weight: 800;
    font-size: 120px;
    line-height: 100%;
    text-align: right;
    color: transparent;
    -webkit-text-stroke: 2px #E1E3E7;
    text-stroke: 2px #E1E3E7;
    margin-right: -48px;
    margin-bottom: -14px;
}

.work__content-texts {
    margin-top: 24px;
}

/* !!! не тарифы !!!*/
/* --- reviews --- */

.reviews__container {
    margin-top: 64px;
}

.reviews__item {
    border: 1px solid #DCDEE2;
    border-radius: 16px;
    padding: 24px;
}

.reviews__item._even {
    margin-top: 32px;
}

.reviews__item-text {
    margin-block: 16px 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.reviews__item-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.reviews__item-position {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #707070;
}

/* --- reviews --- */

/* --- faq --- */
.faq__container {
    margin-top: 64px;
}

.faq__item:not(:first-child) {
    border-top: 1px solid #DCDEE2;
}

.faq__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .2s color;
    padding-block: 30px;
}

.faq__item._active .faq__item-head {
    color: #005BFF;
}

.faq__item-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.faq__item-cross {
    background: #F0F5FF;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s transform;
    border-radius: 20px;
}

.faq__item._active .faq__item-cross {
    transform: rotate(45deg);
}

.faq__item-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 24px;
    display: none;
}

.faq__item._active .faq__item-description {
    display: block;
}

/* --- faq --- */

/*!!! banner !!!*/
.banner__ai {
    border-radius: 16px;
    padding: 47px 64px 64px;
}

.banner__ai-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
}

.banner__ai-button {
    margin-top: 49px;
    width: fit-content;
}

.banner__ai-picture {
    position: absolute;
    right: 10%;
    bottom: 0;
}

.banner__ai-content {
    width: 55%;
}

/* --- modal --- */
.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
    z-index: 10;
}

.modal._show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #00000099;
    cursor: pointer;
}

.modal__body {
    position: relative;
    max-width: 636px;
    padding: 40px;
    border-radius: 16px;
    background: #fff;
}

.modal__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 32px;
}

.modal__body .section__form-form {
    padding: 0;
}

.modal__cross {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

/* --- modal --- */
/*!!! FOOTER !!!*/
.footer {
    background: #262626;
}

.footer__content {
    padding-bottom: 32px;
    padding-top: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer__content-left {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.footer__selena-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    color: #FFFFFFCC;
}

.swiper-wrapper {
    box-sizing: border-box;
}

.page {
    padding: 24px 0;
    font-size: 16px;
    line-height: 1.5;
}

.page h1 {
    font-weight: 800;
    margin-bottom: 24px;
}

.page p {
    margin-bottom: 24px;
}

.messengers {
  position: fixed;
  bottom: 120px;
  right: 16px;
  z-index: 1000;
}

.messengers-invite {
  position: absolute;
  right: 79px;
  bottom: 0;
  width: 380px;
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  cursor: pointer;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  box-shadow: rgba(0, 18, 46, 0.18) 0px 2px 20px 0px;
  font-size: 15px;
  line-height: 1.3;
}

.messengers-invite.visible {
  opacity: 1;
  visibility: visible;
}

.messengers-invite img {
  width: 20px;
  margin-left: 5px;
  vertical-align: middle;
}

.messengers-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.messengers-list a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: 0.4s;
  display: none;
}

.messengers-list.active a {
  display: block;
}

.messengers-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  background-image: url("/img/btn.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #0374FE;
  background-size: 80%;
}

.messengers-btn.active {
  transition: 0.3s;
  background-size: 25px 25px;
  background-image: url("/img/close.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.messengers-btn.active::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  border: 2px solid #0374FE;
  box-sizing: border-box;
}

.messengers-btn.active .waves-block {
  opacity: 0;
}

.messengers .tg {
  background: #2ca8dd url("/img/telegram.svg") 50% no-repeat;
}

.messengers .wa {
  background: #57d163 url("/img/whatsapp.svg") 50% no-repeat;
}

@keyframes waves {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

.waves-block {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-23px, -23px);
  z-index: -1;
}

.waves {
  position: absolute;
  width: 110px;
  height: 110px;
  background: RGBA(3, 116, 254, 0.5);
  opacity: 0;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  animation: waves 5s ease-in-out infinite;
  will-change: transform, opacity;
}

.wave-1 {
  animation-delay: 1s;
}

.wave-2 {
  animation-delay: 2s;
}

.wave-3 {
  animation-delay: 3s;
}

.subscribe-block {
    display: flex;
    align-items: center;
}
.subscribe-text {
    margin-right: ;
    margin-right: 8px;
}
.subscribe-btn {
    display: flex;
    align-items: center;
    border: 1px solid white;
    border-radius: 16px;
    padding: 0px 12px;
}

@media (max-width: 767px) {
  .messengers {
    bottom: 100px;
    right: 16px;
  }

  .messengers-btn {
    width: 54px;
    height: 54px;
  }

  .messengers-btn.active::after {
    width: 54px;
    height: 54px;
  }

  .waves {
    width: 100px;
    height: 100px;
  }
}

.footer__selena-tr {
    display: flex;
    gap: 6px;
}

@media (max-width: 1299px) {
    .banner__content-white {
        min-width: 160px;
    }

    .hero__white-banners {
        left: 0;
    }

    .banner__blue-content {
        padding: 12px;
    }

    .banner__blue-text {
        font-size: 11px;
    }

    .banner__blue-point {
        font-size: 10px;
    }

    .profit__card-img-two:first-child {
        width: 75%;
    }

    .profit__card-img-two:nth-child(2) {
        width: 65%;
    }
}

@media (max-width: 1099px) {
    .visual__analytics {
        width: 75%;
    }

    .orders__profit-content {
        width: unset;
    }


    .section__orders-profit {
        flex-direction: column;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .section__cards-clarity {
        flex-wrap: wrap;
    }


    .cards-clarity-left {
        display: contents;
    }

    .section__cards-clarity > .card-clarity {
        width: calc(50% - 16px);
    }

    .cards-clarity-top {
        width: calc(50% - 16px);
        margin-bottom: 0;
        grid-template-columns: 1fr;
    }

    .banner__blue-point {
        font-size: 9px;
    }
}

@media (max-width: 991px) {
    .text__h1 {
        font-size: 48px;
    }

    .hero__h2 {
        font-size: 22px;
        width: 100%;
    }

    .text__20-regular {
        font-size: 18px;
        width: 100%;
    }

    .btn._ai {
        width: auto;
    }

    .visual__analytics {
        width: 65%;
    }

    .hero__content {
        padding-top: 46px;
    }

    .banner__white-numbers {
        margin-top: 25px;
    }

    .hero__white-banners {
        left: 3%;
        bottom: 3%;
    }

    .header__button {
        padding: 10px 24px;
    }

    .header__burger-icon {
        display: block;
    }

    .section__h2 {
        font-size: 30px;
    }

    .section {
        margin-block: 60px;
    }

    .work__cards,
    .real-profit-cards,
    .section__whom-cards {
        flex-direction: column;
        margin-top: 40px;
    }

    .whom__card-contents {
        display: flex;
    }

    .card__picture {
        padding: 18px
    }

    .whom__card-picture {
        margin-right: 20px;
        flex-shrink: 0;
    }

    .work__cards,
    .section__whom-cards {
        gap: 16px;
    }

    .real-profit-cards {
        gap: 32px;
    }

    .container__form,
    .form-content-info,
    .section__comparison-block,
    .profit__card-img-two:last-child,
    .profit__card-picture-two,
    .profit__card-picture,
    .profit__card-content {
        width: 100%;
        min-height: unset;
    }

    .profit__card-picture-two,
    .profit__card-picture {
    min-height: 360px;
    }
    .profit__card-picture {
        order: 2;
    }

    .profit__card-img-two:nth-child(2) {
        bottom: 60px;
    }

    .banner__ai {
        padding: 32px;
    }

    .banner__ai-description {
        font-size: 16px;
        width: 80%;
    }

    .banner__ai-button {
        margin-top: 24px;
    }

    .section__comparison-blocks {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }

    .section__cards-clarity {
        margin-top: 40px;
    }

    .work__card {
        flex-direction: row;
        align-items: center;
        padding: 20px;
    }

    .work__card-content {
        display: flex;
        align-items: start;
        gap: 20px;
    }

    .work__content-texts {
        margin-top: unset;
    }

    .work__card-number {
        font-size: 80px;
        margin-right: -30px;
        margin-bottom: -80px;
    }

    .tariffs__item-title {
        margin-bottom: 4px;
    }

    .orders__profit-picture {
        min-width: 64px;
    }

    .work__cards {
        display: grid;
        grid-auto-rows: 1fr;
    }

    .section__form-content {
        flex-direction: column;
        padding-block: 80px;
    }

    .form-content-info {
        flex-direction: column;
        margin-top: unset;
    }

    .container__form {
        margin-top: 40px;
    }

    .banner__ai-picture {
        right: 0;
    }

    .banner__blue-point {
        line-height: 12px;
    }

    .banner__white-numbers {
        margin-top: 10px;
    }

    .banner__white-text {
        font-size: 8px;
    }

    .banner__white-number {
        font-size: 14px;
    }

    .banner__blue-text {
        font-size: 10px;
    }

    .banner__content-white {
        min-width: 140px;
        padding: 8px 10px;
    }

    .banner__blue-content {
        padding: 10px;
    }

    .banner__blue-list {
        margin-top: unset;
    }

    .profit__card-button {
        display: block;
        margin-left: auto;
    }

    .header__navigation {
        display: none;
    }

    .header__burger-icon {
        cursor: pointer;
        height: 16px;
        position: relative;
        width: 20px;
        margin-right: 22px;
        display: block;
        z-index: 110;
    }

    .header__burger-icon .line {
        background-color: #000;
        height: 2px;
        left: 0;
        opacity: 1;
        position: absolute;
        right: 0;
        transform: translateY(-50%);
        border-radius: 3px;
        transition: 0.3s;
    }

    .header__burger-icon .line:first-child {
        top: 1px;
    }

    .header__burger-icon .line:nth-child(2) {
        top: 50%;
    }

    .header__burger-icon .line:nth-child(3) {
        bottom: -1px;
    }

    .header__burger-icon.active .line:first-child {
        transform: rotate(45deg);
        top: 50%;
    }

    .header__burger-icon.active .line:nth-child(2) {
        opacity: 0;
    }

    .header__burger-icon.active .line:nth-child(3) {
        transform: rotate(-45deg);
        bottom: auto;
        top: 50%;
    }

    .tariffs__container {
        overflow-x: auto;
        margin-top: 40px;
    }

    .tariffs__item {
        min-width: 320px;
        margin-top: 20px;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .reviews__item {
        padding: 20px;
    }

    .text__h1 {
        font-size: 34px;
    }

    .hero__content {
        padding-top: 35px;
    }

    .hero__h2 {
        font-size: 22px;
        padding-top: 8px;
    }

    .orders__profit-comparison,
    .profit__card-text,
    .whom__card-h3,
    .text__20-regular {
        font-size: 16px;
        line-height: 24px;
    }

    .hero__button {
        margin-bottom: 40px;
    }

    .hero__visual-content {
        display: none;
    }

    .section {
        margin-block: 40px;
    }

    .section__h2 {
        font-weight: 800;
        font-size: 22px;
        line-height: 28px;
    }

    .container__form,
    .section__cards-clarity,
    .section__comparison-text,
    .orders__profit-comparison,
    .real-profit-cards,
    .section__whom-cards {
        margin-top: 24px;
    }

    .whom__card-text {
        font-size: 14px;
    }

    .whom__card-content {
        margin-top: unset;
    }

    .work__card,
    .whom__card-contents {
        padding: 16px;
    }

    .profit__card-h3 {
        font-size: 18px;
    }

    .form-content-texts,
    .orders__profit-text,
    .profit__card-texts {
        margin-top: 16px;
    }

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

    .banner__ai-picture {
        position: relative;
        background: #FFFFFF;
        border-radius: 12px;
    }

    .banner__ai-content {
        order: 2;
        width: 100%;
        margin-top: 16px;
    }

    .section__comparison-text,
    .orders__profit-banner-text,
    .orders__profit-text,
    .banner__ai-description {
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }

    .banner__ai-button {
        width: 100%;
    }

    .card-clarity,
    .banner__ai {
        padding: 20px;
    }

    .whom__card-text {
        margin-top: 4px;
    }

    .section__orders-profit {
        gap: 20px;
    }

    .orders__profit-banner {
        margin-top: 12px;
    }

    .orders__profit-banner-text {
        margin-left: 16px;
    }

    .comparison-card:nth-child(odd)::before,
    .comparison-card:nth-child(odd)::after {
        display: none;
    }

    .section__comparison-block {
        grid-template-columns: 1fr;
    }

    .comparison-card {
        display: none;
    }

    .section__comparison-block::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 64px;
        height: 64px;
        background-color: #FFFFFF;
        border-radius: 50%;
        background-image: url(../svg/emoji-sad.svg);
        background-repeat: no-repeat;
        background-position: center;
        margin-top: 13px;
        margin-right: 13px;
        z-index: 2;
    }

    .comparison-card-end-text {
        margin-top: 12px;
    }

    .section__comparison-block {
        padding: 20px;
    }

    .section__comparison-block {
        gap: 32px;
    }

    .open__card {
        display: block;
    }

    .comparison-card.is-visible {
        display: block;
    }

    .card-clarity-texts,
    .card__clarity-picture,
    .cards-clarity-top,
    .section__cards-clarity > .card-clarity {
        width: 100%;
    }

    .comparison-card-h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .card__clarity-picture {
        margin-top: 24px;
    }

    .card-clarity-end {
        flex-direction: column;
        gap: 18px;
    }

    .card-clarity-texts {
        margin-right: unset;
    }

    .work__card-number {
        font-size: 55px;
    }

    .tariffs__item-title {
        font-size: 16px;
        line-height: 24px;
    }

    .tariffs__item-description {
        font-size: 14px;
    }

    .work__cards {
        gap: 0;
    }

    .work__card-number {
        margin-right: -21px;
        margin-bottom: -112px;
    }

    .form-content-text,
    .faq__item-title {
        font-size: 16px;
    }

    .faq__item-head {
        padding-block: 16px;
    }

    .form-content-h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .section__form-content {
        padding-block: 48px;
    }

    .profit__card-content {
        display: contents;
    }

    .real-profit-cards {
        gap: unset;
    }

    .profit__card-button {
        order: 2;
        width: 100%;
    }

    .profit__card-picture,
    .profit__card-picture-two {
        margin-top: 20px;
    }

    .faq__container,
    .tariffs__container {
        margin-top: 24px;
    }

    .section__form-form {
        padding: 20px;
    }

    .form__polit-conf,
    .form__polit-conf-text {
        font-size: 12px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer__content-right {
        display: flex;
        flex-wrap: wrap;
    }

    .footer__content-right .footer__selena-tr {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .profit__card-picture {
        min-height: 400px;
    }
    .profit__card-picture-two {
        min-height: 220px;
    }

    .tariffs__container {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow-x: unset;
    }

    .tariffs__item {
        margin-top: unset;
        margin-bottom: 24px;
    }

    .orders__profit-banner {
        position: relative;
    }

    .work__card-number {
        margin-bottom: unset;
        margin-right: unset;
        position: absolute;
        bottom: -8px;
        right: -5px;
    }

    .work__cards {
        grid-auto-rows: unset;
    }

    .btn._xl {
        padding: 16px 20px;
    }

    .card__picture {
        padding: 8px;
        object-fit: contain;
    }

    .whom__card-contents {
        align-items: start;
    }

    .whom__card-picture {
        max-width: 64px;
        min-width: 64px;
    }

    .header__modal-nav {
        font-size: 16px;
    }

    .orders__profit-comparison {
        white-space: unset;
    }

    .footer__content {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 12px;
        padding: 20px;
    }

    .footer__content-right .footer__selena-tr {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 475px) {
    .profit__card-picture {
        min-height: 300px;
    }
}
@media (max-width: 360px) {
    .profit__card-picture {
        min-height: 250px;
    }
    .tariffs__item {
        min-width: unset;
    }
}

@media (prefers-reduced-motion) {
    *,
    ::before,
    ::after {
        animation: none !important;
    }

    .section > * {
        opacity: 1!important;
        transform: unset!important;
    }
}



