/* ======================================================================
   ОБЩИЕ СТИЛИ
   ====================================================================== */
.sections {
    background-color: #000;
    display: flex;
    flex-direction: column;
    gap: 80px;
    color: #FFF;
    padding-bottom: 80px;
}
.sections section {
    margin-inline: auto;
}
.sections .container {
    padding: 0 20px;
}
.sections h1 {
    font-family: Stolzl;
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
    color: #FFF;
}
.sections h2 {
    font-family: Stolzl;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    vertical-align: middle;
    color: #FFF;
}

@media (min-width: 1024px) {
    .sections {
        gap: 120px;
        padding-bottom: 120px;
    }
    .sections .container {
        padding: 0 64px;
        max-width: 1440px;
        width: 100%;
        margin-inline: auto;
    }
    .sections h1 {
        font-size: 48px;
        line-height: 56px;
        max-width: 700px;
    }
    .sections h2 {
        font-size: 40px;
        line-height: 48px;
    }
}


/* ======================================================================
   БЛОК 1: HERO
   ====================================================================== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    /* gap: 32px; */
    align-items: center;
    /* min-height: 838px; */
}
.hero__content {
    position: relative;
    z-index: 1;
}
.hero__title {
    margin-top: 12px;
}
.hero__subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    font-family: 'Raleway';
    text-align: left;
}
.hero__content-btns {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero__content-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__content-btn-left {
    display: block;
    background-color: #65EBBB;
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    font-family: 'Raleway';
    font-weight: 600;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    transition: background-color 0.3s;
}
.hero__content-btn-left:hover {
    background-color: #A8F5DA;
}
.hero__content-notes {
    margin-top: 24px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    max-width: 756px;

    color: var(--text-text-blind, #D3D3D3);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.hero__content-notes2 {
    color: var(--text-text-overlay, #FFF);
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.hero__image {
    position: relative;
    z-index: 1;
    max-width: 90vw;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__image-wrap {
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero__content-btn-left {
        max-width: 360px;
    }
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        gap: 60px;
        min-height: 595px;
    }
    .hero__content {
        width: 100%;
        min-width: 56vw;
    }
    .hero__title {
        margin-top: 24px;
    }
    .hero__subtitle {
        margin-top: 8px;
        font-size: 28px;
        line-height: 36px;
    }
    .hero__content-btns {
        margin-top: 28px;
        gap: 16px;
    }
    .hero__content-btn-left {
        max-width: 756px;
        font-size: 18px;
        line-height: 22px;
        height: 56px;
    }
    .hero__content-notes {
        margin-top: 56px;
        gap: 24px;
        display: flex;
        flex-direction: column;
        max-width: 756px;

        color: var(--text-text-blind, #D3D3D3);
        font-family: Raleway;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    .hero__content-notes2 {
        color: var(--text-text-overlay, #FFF);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }
    .hero__image {
        display: block;
        max-width: 540px;
        min-width: 44vw;
        width: 100%;
    }
}

@media (min-width: 1440px) {
    .hero__content {
        min-width: 800px;
        width: 800px;
    }
    .hero__image {
        min-width: 550px;
    }
}


/* ======================================================================
   БЛОК 2: FAQ
   ====================================================================== */
.faq__wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.faq__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__title-comm {
    font-family: Stolzl;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
.faq__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq__item {
    border-bottom: 1px solid #494949;
    padding-bottom: 24px;
}
.faq__question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    text-align: left;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    font-family: Raleway;
    color: #fff;
}
.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #494949;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
    box-sizing: border-box;
}
.faq__item.is-active .faq__icon {
    background: #fff;
    border-color: #fff;
    transform: rotate(45deg);
}
.faq__item .faq__icon svg path {
    transition: stroke 0.3s;
}
.faq__item.is-active .faq__icon svg path {
    stroke: #000;
}
.faq__question:hover .faq__icon {
    border-color: #fff;
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq__answer-inner {
    margin-top: 24px;

    color: var(--Text-text, #FFF);
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
/* стили на случай если в ответ добавят список */
.faq__answer-inner ul {
    margin-top: 10px;
}
.faq__answer-inner ul li {
    display: flex;
    gap: 10px;
}
.faq__answer-inner ul li::before {
    content: url(https://insperia.ru/wp-content/themes/twentytwentyfour/img/global/check-mark-icon-white.svg);
    position: relative;
}

@media (min-width: 1024px) {
    .faq__wrapper {
        flex-direction: row;
    }
    .faq__header {
        gap: 20px;
    }
    .faq__title-comm {
        font-family: Stolzl;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
    }
    .faq__question {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 36px;
    }
    .faq__answer-inner {
        margin-top: 24px;

        color: var(--Text-text, #FFF);
        font-family: Raleway;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
}

@media (min-width: 1440px) {
    .faq__title {
        min-width: 606px;
    }
}