* {
    box-sizing: border-box;
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1;
}

:root {
    --error-color: #eb236b;
    --font-color: #45556C;
    --background-color: #FFFFFF;
    --icon-color: #7c8a9e;
    --button-background: #FA9D11;
    --button-shadow: 0 10px 15px -3px #FEE68580;
}

html,
body,
div,
span,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

html,
body {
    scroll-behavior: smooth;
    color: var(--font-color);
    background-color: var(--background-color);
}

button {
    transition: 200ms opacity ease-in-out;
    opacity: 1;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

button:disabled {
    background: linear-gradient(264.29deg, #8e8e8e 2.94%, #ccced9 100%);
    box-shadow: none;
}

a {
    color: var(--font-color);
    text-decoration: none;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    border: solid 4px transparent;
    box-shadow: inset 0 0 14px 14px transparent;
}

::-webkit-scrollbar-thumb {
    border: solid 4px transparent;
    border-radius: 14px;
    box-shadow: inset 0 0 14px 14px #bbbbbe;
}

::-webkit-scrollbar-button {
    display: none;
}

.header {
    border-bottom: 1px solid #E2E8F0;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1296px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5px;
}

.logo {
    display: flex;
    gap: 0 14px;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #D97706;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0 32px;
    height: 36px;
}

.nav-item {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.nav-button {
    width: 145px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: #FA9D11;
    color: #0F172B;
    font-weight: 700;
    font-size: 14px;
}

/* --------  for-us --------- */

.for-us {
    max-width: 773px;
    display: flex;
    flex-direction: column;
    margin: 64px auto;
}

.for-us__title {
    text-align: center;
    font-weight: 700;
    font-size: 60px;
    color: #0F172B;
    margin-bottom: 27px;
    line-height: 75px;
}

.for-us__title span {
    color: #D97706;
}

.for-us__text {
    max-width: 672px;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    text-align: center;
    margin: 0 auto 32px;
}

.for-us__controls {
    display: flex;
    gap: 0 16px;
    margin: 0 auto 40px;
}

.for-us-yellow,
.for-us-invisible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    height: 56px;
    border-radius: 14px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    border: none;
}

.for-us-yellow {
    width: 285px;
    background: #FA9D11;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px #FEE68580;

}

.for-us-invisible {
    border: 1px solid #E2E8F0;
    background: inherit;
    width: 194px;
    font-weight: 500;
    color: #314158;
}

.for-us__icons {
    display: flex;
    justify-content: center;
    gap: 0 32px;
}

.for-us__el {
    display: flex;
    gap: 0 8px;
}

.banner {
    margin: 0 auto 176px;
}

.banner__container {
    max-width: 1024px;
    padding: 16px;
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px #00000040, 0 25px 50px -12px #00000012 inset;
}

.banner__img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* --------  question --------- */

.question {
    background: #F8FAFC;
    margin-bottom: 80px;
}

.question__container {
    max-width: 1024px;
    margin: 0 auto;
}

.question__title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 24px;
    color: #0F172B;
    text-align: center;
}

.question__text {
    max-width: 670px;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.44px;
    text-align: center;
    margin: 0 auto 64px;
}

.question__text span {
    color: #D97706;
}

.question__cards {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.question__card {
    margin: 0 3px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 1px 2px -1px #0000001A, 0 1px 3px 0 #0000001A;
}

.question__card__icon {
    padding: 14px;
    width: 56px;
    height: 56px;
    top: 33px;
    left: 33px;
    border-radius: 14px;
    background: #FFFBEB;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.question__card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #0F172B;
    margin-bottom: 16px;
}

.question__card__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #45556C;
}

/* --------  who-need --------- */

.who-need {
    max-width: 1216px;
    margin: 96px auto 70px;
}

.who-need__info {
    max-width: 700px;
    padding: 0 3px;
}

.who-need__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.37px;
    color: #0F172B;
    margin-bottom: 24px;
}

.who-need__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #45556C;
    margin-bottom: 64px;
}

.who-need__cards {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.who-need__card {
    margin: 0 3px;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    width: 376px;
}

.who-need__card__icon {
    padding: 14px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.who-need__card__icon_people {
    background: #FFFBEB;
}

.who-need__card__icon_ear {
    background: #ECFDF5;
}

.who-need__card__icon_ese {
    background: #FAF5FF;
}

.who-need__card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #0F172B;
    margin-bottom: 16px;
}

.who-need__card__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #45556C;
}

/* --------  opportunities --------- */

.opportunities {
    background: #0F172B radial-gradient(113.15% 213.76% at 0% 100%, rgba(249, 115, 22, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
}

.opportunities__container {
    margin: 0 auto;
    padding: 96px 8px;
    max-width: 1216px;
}

.opportunities__info {
    max-width: 768px;
    padding: 0 3px;
    margin: 0 auto;
}

.opportunities__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.37px;
    color: #FFFFFF;
    margin-bottom: 24px;
    text-align: center;
}

.opportunities__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #90A1B9;
    margin-bottom: 64px;
    text-align: center;
}

.opportunities__cards {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.opportunities__card {
    margin: 0 3px;
    padding: 33px 42px;
    display: flex;
    flex-direction: column;
    width: 373px;
    border: 1px solid #314158;
    background: #1D293D80;
    border-radius: 24px;
}

.opportunities__card__icon {
    padding: 14px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.opportunities__card__icon_calculator {
    background: #FA9D1133;
    border: 1px solid #FA9D114D;
}

.opportunities__card__icon_folder {
    background: #FF690033;
    border: 1px solid #FF69004D;
}

.opportunities__card__icon_coins {
    background: #00BC7D33;
    border: 1px solid #00BC7D4D;
}

.opportunities__card__icon_people {
    background: #FFFBEB;
}

.opportunities__card__icon_ear {
    background: #ECFDF5;
}

.opportunities__card__icon_ese {
    background: #FAF5FF;
}

.opportunities__card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.opportunities__card__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #90A1B9;
}


/* --------  excel --------- */


.excel {
    max-width: 1216px;
    margin: 96px auto;
}

.excel__info {
    max-width: 700px;
    padding: 0 3px;
    margin: 0 auto;
}

.excel__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #0F172B;
    margin-bottom: 24px;
    padding: 0 60px;
    text-align: center;
}

.excel__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #45556C;
    margin-bottom: 64px;
    text-align: center;
}

.excel__cards {
    width: 100%;
    display: flex;
    gap: 0 32px;
    justify-content: center;
    margin-bottom: 48px;
}

.excel__card {
    margin: 0 3px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    width: 507px;
    border-radius: 24px;
}

.excel__card_error {
    background: #FEF2F280;
    border: 1px solid #FFE2E2;
}

.excel__card_success {
    position: relative;
    background: #FFFBEB;
    border: 1px solid #FEF3C6;
    box-shadow: 0 4px 6px -4px #FEF3C680, 0 10px 15px -3px #FEF3C680;
}

.excel__card_decision {
    position: absolute;
    top: -10px;
    right: 20px;
    color: #0F172B;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 16777200px;
    background: #FA9D11;
    display: inline-flex;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
}

.excel__card__icon__wrapper {
    display: flex;
    align-items: center;
    gap: 0 8px;
}

.excel__card__icon__wrapper span {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.07px;
    color: #0F172B;
}

.excel__card__icon {
    padding: 14px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.excel__card__icon_error {
    background: #FFE2E2;
}

.excel__card__icon_success {
    background: #FEF3C6;
}

.excel__card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #0F172B;
    margin-bottom: 16px;
}

.excel__card__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #45556C;
}

.excel__card__icon__wrapper {
    margin-bottom: 32px;
}

.excel__card__ul {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
}

.excel__card__li {
    display: flex;
    gap: 0 12px;
}

.exel__card_img {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.excel__card__li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    color: #314158;
}

.excel__footer {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    text-align: center;
    color: #0F172B;
}

/* --------  start --------- */


.start {
    margin: 0 auto;
    padding: 95px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.start__info {
    max-width: 1216px;
    padding: 0 3px;
    margin: 0 auto;
    text-align: center;
}

.start__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.37px;
    color: #0F172B;
    margin-bottom: 24px;
}

.start__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #45556C;
    margin-bottom: 64px;
}

.start__cards {
    position: relative;
    width: 100%;
    max-width: 1070px;
    margin: 0 auto 64px;
    display: flex;
    gap: 0 32px;
    justify-content: center;
}

.start__cards_line {
    position: absolute;
    top: 47px;
    left: 132px;
    right: 132px;
    height: 2px;
    background: #FEF3C6;
}

.start__card {
    max-width: 335px
}

.start__card__icon {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16777200px;
    border: 1px solid #F1F5F9;
    background: #FFF;
    box-shadow: 0 10px 15px -3px #E2E8F0, 0 4px 6px -4px #E2E8F0;
    margin: 0 auto 24px;
}

.start__card__icon:after {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 16777200px;
    border: 4px solid #F8FAFC;
    background: #FA9D11;
    color: #0F172B;
    font-size: 16px;
    font-weight: 700;
}

.start__card__icon_key:after {
    content: "1";
}

.start__card__icon_settings:after {
    content: "2";
}

.start__card__icon_play:after {
    content: "3";
}

.start__card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #0F172B;
    margin-bottom: 12px;
    text-align: center;
}

.start__card__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.31px;
    color: #45556C;
    text-align: center;
}

.start-button {
    display: flex;
    height: 60px;
    padding: 16px 35.758px 16px 37px;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: #FA9D11;
    box-shadow: 0 10px 15px -3px #FEE685, 0 4px 6px -4px #FEE685;
    border: none;
    margin: 0 auto;
    color: #0F172B;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 155.556% */
    letter-spacing: -0.439px;
}

/* --------  tariffs --------- */

.tariffs {
    margin: 0 auto;
    padding: 95px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.tariffs__info {
    max-width: 1216px;
    padding: 0 3px;
    margin: 0 auto;
    text-align: center;
}

.tariffs__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.37px;
    color: #0F172B;
    margin-bottom: 24px;
}

.tariffs__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: #45556C;
    margin-bottom: 64px;
}

.tariffs__cards {
    position: relative;
    width: 100%;
    padding: 0 3px;
    margin: 0 auto 64px;
    display: flex;
    gap: 0 32px;
    justify-content: center;
}

.tariffs__card {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 33px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.tariffs__card__btn {
    display: flex;
    width: 100%;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    border: 2px solid #FEF3C6;
    background: #FFFFFF;
}

.tariffs__card__popular {
    transform: translateY(-24px);
    border-radius: 24px;
    border: 1px solid #E68D0C;
    background: #FA9D11;
    box-shadow: 0 20px 25px -5px #FEE685, 0 8px 10px -6px #FEE685;
}

.tariffs__card__popular:after {
    content: "Популярный";
    position: absolute;
    top: -15px;
    right: 30px;
    display: flex;
    width: 116px;
    height: 28px;
    justify-content: center;
    align-items: center;
    border-radius: 16777200px;
    background: linear-gradient(90deg, #00D492 0%, #00BC7D 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    font-weight: 700;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.15px;
}

.tariffs__card__popular .tariffs__card__btn {
    border: none;
    color: #FFFFFF;
    background: #0F172B;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}

.tariffs__card__title {
    color: #0F172B;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    letter-spacing: -0.449px;
    margin-bottom: 8px;
}

.tariffs__card__text {
    color: #62748E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.312px;
    margin-bottom: 20px;
}

.tariffs__card__desc {
    color: #0F172B;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    letter-spacing: 0.369px;
}

.tariffs__card__free {
    color: #62748E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
    margin-bottom: 30px;
}

.tariffs__card__ul {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    margin-bottom: 33px;
}

.tariffs__card__li {
    display: flex;
    gap: 0 12px;
}

.tariffs__card_img {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.tariffs__card__li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    color: #314158;
}


/* --------  security --------- */

.security {
    background: #0F172B;
}

.security__container {
    display: flex;
    width: 100%;
    max-width: 1296px;
    padding: 40px;
    margin: 0 auto;
}

.security__info,
.security__status {
    width: 50%;
}

.security__status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

.security__info__label {
    width: 182px;
    height: 38px;
    display: inline-flex;
    padding: 9.5px 13.375px 8.5px 17px;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border-radius: 16777200px;
    border: 1px solid #314158;
    background: rgba(29, 41, 61, 0.50);
    color: #FFB900;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.15px;
    margin-bottom: 24px;
}

.security__info__title {
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 111.111% */
    letter-spacing: 0.369px;
    margin-bottom: 24px;
}

.security__info__text {
    max-width: 530px;
    color: #CAD5E2;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.25px; /* 162.5% */
    letter-spacing: -0.439px;
    margin-bottom: 31px;
}

.security__card__ul {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    margin-bottom: 33px;
}

.security__card__li {
    display: flex;
    gap: 0 12px;
}

.security__card_img {
    width: 24px;
    height: 24px;
}

.security__card__li span {
    color: #F1F5F9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.312px;
}

.security__status__card {
    display: flex;
    flex-direction: column;
    width: 448px;
    padding: 33px;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid #1D293D;
    background: #020618;
    box-shadow: 0 0 110px -36px #FA9D11;
}

.security__status__headRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1D293D;
    padding-bottom: 13px;
}

.security__status__headCell1 {
    color: #FFB900;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.15px;
}

.security__status__headCell2 {
    display: flex;
    padding: 5px 12.633px 3px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 16777200px;
    background: rgba(0, 188, 125, 0.20);
    color: #00D492;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 133.333% */
}

.security__status__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 10px;
    background: rgba(29, 41, 61, 0.50);
}

.security__status__cell1 {
    color: #CAD5E2;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.15px;
}

.security__status__cell2 {
    display: flex;
    align-items: center;
    gap: 0 4px;
    color: #00D492;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.15px;
}

.security__status__cell_img {
    width: 16px;
    height: 16px;
}

/* ------- faq ---------- */


.faq {
    margin: 0 auto;
    display: flex;
    max-width: 1216px;
    padding: 96px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.faq__label {
    color: #0F172B;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 111.111% */
    letter-spacing: 0.369px;
    width: 100%;
    margin-bottom: 30px;
}

.faq__item {
    transition: 200ms background ease-in-out, 200ms border ease-in-out;
    max-width: 648px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.faq__item img {
    transition: 200ms transform ease-in-out;
    transform: rotate(180deg);
    margin-top: 5px;
}

.faq__item_active {
    border-radius: 16px;
    border: 1px solid #FA9D11;
    background: rgba(255, 251, 235, 0.50);
}

.faq__item_active .faq__answer {
    height: auto;
    padding-top: 20px;
}

.faq__item_active img {
    transform: rotate(0);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    cursor: pointer;
}

.faq__question__text {
    color: #0F172B;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 155.556% */
    letter-spacing: -0.439px;
}

.faq__answer {
    transition: 200ms height ease-in-out, 200ms padding ease-in-out;
    color: #45556C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.312px;
    height: 0;
    overflow: hidden;
}

/* ------- footer ---------- */

.footer {
    padding: 49px 32px;
    border-top: 1px solid #1D293D;
    background: #0F172B;
}

.footer__container,
.footer__underground {
    display: flex;
    max-width: 1216px;
    margin: 0 auto;
}

.footer__container {
    margin-bottom: 43px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.footer__contacts {
    display: flex;
    width: 50%;
}

.footer__title {
    color: #FFF;
    font-style: normal;
    line-height: 28px; /* 140% */
    letter-spacing: -0.949px;
    margin-bottom: 17px;
}

.footer__title_payjar {
    font-size: 20px;
    font-weight: 700;
}

.footer__products .footer__title {
    font-size: 16px;
    font-weight: 600;
}

/*.footer__info .footer__text{
    width: 320px;
}*/

.footer__text {
    color: #90A1B9;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.15px;
    margin-bottom: 8px;
}

.footer__products,
.footer__help {
    width: 50%;
}

.footer__underground {
    display: flex;
    justify-content: space-between;
    color: #90A1B9;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    border-top: 1px solid #1D293D;
    padding: 16px 0;
}

/* -------- form --------- */

.form-wrapper {
    max-width: 1216px;
    margin: 0 auto 95px;
    padding: 5px;
}

.form-wrapper p {
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
}

.button {
    width: 350px;
}

.button:active {
    opacity: 0.6;
}

.input {
    border: none;
    font-size: 16px;
    line-height: 24px;
    background: #EFF1FF;
    border-radius: 14px;
    height: 56px;
    padding: 16px 0 16px 24px;
    outline: none;
    appearance: none;
    transition: .2s;
}

.input::placeholder {
    color: #6A6A6A;
}

input:hover {
    box-shadow: 0 0 0 1px #6A6A6A;
}

input:focus {
    box-shadow: 0 0 0 2px #FA9D11;
}

.area-a {
    grid-area: a;
}

.area-b {
    grid-area: b;
}

.area-c {
    grid-area: c;
}

.area-d {
    grid-area: d;
}

.area-e {
    grid-area: e;
    margin-top: 16px;
}

.area-f {
    grid-area: f;
    margin-top: 20px;
    color: #000000;
}

.subtitle1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: rgb(0, 0, 0);
}

.pb16 {
    padding-bottom: 16px;
}

.pb56 {
    padding-bottom: 56px;
}

.form {
    display: grid;
    column-gap: 30px;
    row-gap: 16px;
    grid-template:
      "a a a"
      "b c d"
      "e f f";
}

.thank-wrapper {
    display: none;
}

.js-form.sent .form-content {
    display: none;
}

.js-form.sent .thank-wrapper {
    display: block;
}

.thank-wrapper img {
    margin-bottom: 48px;
}

/* ----------------- */

.error {
    box-shadow: 0 0 0 1px #EB236B;
}

.errorPage {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px);
    max-width: 1100px;
    text-align: center;
    background: white;
    border-radius: 8px;
    transform: translate(-50%, -50%);
}

.errorPage .container {
    width: 100%;
    max-width: 514px;
    margin: 72px auto 88px;
    padding: 0 10px;
}

.errorPage .title {
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 40px;
}

.errorPage .text {
    margin-bottom: 64px;
    font-weight: 400;
    font-size: 24px;
}

.errorPage .img {
    width: 100%;
    max-width: 514px;
}

@media (width <= 1024px) {
    .tariffs__cards {
        gap: 0 7px;
    }
}

@media (width <= 890px) {
    .start__cards_line {
        display: none;
    }

    .start__cards {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

@media (width <= 840px) {
    .tariffs__cards {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .tariffs__card:nth-child(1) {
        order: 1;
    }

    .tariffs__card {
        width: 70%;
        max-width: none;
    }

    .security__container {
        flex-direction: column;
    }

    .security__info,
    .security__status {
        width: 100%;
    }

    .security__status__card {
        width: 100%;
    }

    .form {
        grid-template:
      "a a a a"
      "b b c c"
      "d d d d"
      "e . . ."
      "f f f f";
    }

    .form .button {
        width: 224px;
        height: 48px;
    }

}

@media (width <= 720px) {
    .for-us__title {
        font-size: 48px;
        line-height: 45px;
    }

    .nav-item:nth-child(0),
    .nav-item:nth-child(1),
    .nav-item:nth-child(2),
    .nav-item:nth-child(3),
    .nav-item:nth-child(4),
    .nav-item:nth-child(5) {
        display: none;
    }

    .for-us__controls {
        flex-direction: column;
        gap: 32px;
        width: 70%;
    }

    .for-us-yellow,
    .for-us-invisible {
        width: 100%;
    }

    .for-us__icons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }

    .question__cards,
    .who-need__cards,
    .opportunities__cards,
    .excel__cards {
        flex-direction: column;
        gap: 32px;
    }

    .question__card,
    .who-need__card,
    .opportunities__card,
    .excel__card {
        width: 70%;
        margin: 0 auto;
    }

    .who-need__title,
    .who-need__text {
        text-align: center;
    }


    .footer__container {
        flex-direction: column;
    }

    .footer__info,
    .footer__contacts {
        width: 100%;
    }
}

@media (width <= 480px) {
    .for-us__controls,
    .question__card,
    .who-need__card,
    .opportunities__card,
    .excel__card,
    .tariffs__card {
        width: 95%;
    }

    .faq {
        padding: 96px 10px;
    }

    .footer__contacts,
    .footer__underground,
    .security__status__headRow,
    .security__status__row {
        flex-direction: column;
    }

    .form {
        grid-template:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
    }

    .form .button {
        width: 100%;
    }

    .footer__products,
    .footer__help {
        width: 100%;
    }
}
