.support-1 .wrapper {
    gap: 40px;
}

.support-1-content {
    gap: 24px;
}

.support-1-left {
    align-items: stretch;
    gap: 24px;
    height: fit-content;
}

.support-1-left-top,
.support-2-left-bottom {
    width: 50%;
}

.support-1-left-top .card-name-text span {
    color: var(--purple);
}

.title-last {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.support-1-left-top>.main-text {
    margin-top: 16px;
}

.support-1-left-top .white-btn {
    margin-top: 80px;
}

.support-2-left-bottom>.main-text {
    margin-top: 16px;
}

.support-2-left-bottom>.btns-row {
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.support-2-left-bottom .tooltip-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
}

.support-2-left-bottom .tooltip-trigger svg path {
    transition: all .3s;
}

.support-2-left-bottom .tooltip-trigger:hover,
.support-2-left-bottom .tooltip-trigger.active {
    background-color: #fff;
}

.support-2-left-bottom .tooltip-trigger:hover svg path,
.support-2-left-bottom .tooltip-trigger.active svg path {
    fill: #000;
    opacity: 1;
}

.support-2-left-bottom .btns-row .purple-btn {
    flex: 1;
}

.tooltip-content {
    max-width: unset;

}

.tooltip-tabs-header {
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}



.tooltip-tab-pane {
    display: none;
}

.tooltip-tab-pane.active {
    display: block;
}

.tooltip-table {
    width: 100%;
    margin-top: 24px;
}

.tooltip-table .tooltip-tab-btn.small-transparent-btn {
    padding: 16px 24px !important;
}

.tooltip-table tr td:not(:last-child),
.tooltip-table tr th:not(:last-child) {
    padding-right: 20px;
}

.tooltip-table tr td,
.tooltip-table tr th {
    max-width: 18%;
    text-align: left;
}

.tooltip-table tr:not(:last-child) td,
.tooltip-table tr th {
    padding-bottom: 16px;
}

.tooltip-tab-btn.active {
    background-color: #fff;
    color: #000 !important;
}

.support-1-right>.main-text {
    margin-top: 16px;
}

.support-1-right {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-right: 10px;
    height: 100%;
}

.support-1-right:has(.faq-panel.open) {
    min-height: 550px;
}

.support-1-right>*:not(.faq-answer-block) {
    margin-right: 22px;
}

/* Общая скроллируемая область */
.support-1-right .faq-scrollable-area {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-right: 8px;
    margin-top: 16px;
    position: relative;
}

/* Контейнер для выпадашки - относительное позиционирование */
.faq-dropdown-wrap {
    position: relative;
    margin-top: 32px;
    flex-shrink: 0;
    z-index: 10;
    margin-right: 22px;
}

/* Сам дропдаун */
.faq-dropdown {
    position: relative;
    width: 100%;
    z-index: 20;
}

/* Панель с вопросами - абсолютное позиционирование */
.faq-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    opacity: 0;
    overflow: hidden;
    background: #3F3E47;
    /* Цвет фона как у grey-bouble */
    border-radius: 0 0 12px 12px;
    transition: opacity .25s ease, max-height .25s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    z-index: 30;
}

.faq-panel.open {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

/* Вкладки */
.faq-tabs {
    flex-shrink: 0;
    padding: 4px 16px 4px 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Список вопросов - отдельный скролл */
.faq-list {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 16px 16px 16px;
}

/* Стилизация скроллбара для faq-list */
.faq-list::-webkit-scrollbar {
    width: 4px;
}

.faq-list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 2px;
}

.faq-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.faq-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.faq-category {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 23px;
}

/* Блок ответа - отдельный скролл */
.faq-answer-block {
    flex-shrink: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 18px;
    margin-top: 28px;
    max-height: 350px;
}

/* Стилизация скроллбара для faq-answer-block */
.faq-answer-block::-webkit-scrollbar {
    width: 4px;
}

.faq-answer-block::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 2px;
}

.faq-answer-block::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.faq-answer-block::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Стили для faq-trigger */
.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #3F3E47;
    /* Цвет фона как у grey-bouble */
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-trigger.open {
    border-radius: 12px 12px 0 0;
    border-bottom-color: transparent;
}

.faq-label {
    color: #fff;
    font-size: 16px;
}

.faq-arrow {
    color: #fff;
    transition: transform .3s;
    font-size: 12px;
}

.faq-trigger.open .faq-arrow {
    transform: rotate(180deg);
}

/* Стили для вкладок */
.faq-tab {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 24px;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    border: none;
    text-align: left;
    outline: none;
    padding-bottom: 8px;
    gap: 8px;
}

.faq-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.faq-tab.active {
    box-shadow: inset 0 -1px 0 0 #fff;
    color: #fff;
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-size: 14px;
    min-width: 17px;
    line-height: 24px;
}

/* Стили для элементов списка */
.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 5px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.faq-item:hover {
    color: var(--purple);
}

.faq-num {
    flex-shrink: 0;
}


.faq-answer-title {
    margin-bottom: 22px;
    display: flex;
}


@media(max-width: 1240px) {}

@media(max-width: 950px) {
    .faq-answer-block {
        max-height: 62%;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .support-1-content {
        flex-direction: column;
        gap: 16px;
    }

    .support-1-left {
        gap: 16px;
        flex-direction: column;
    }

    .support-1-left-top,
    .support-2-left-bottom {
        width: 100%;
    }

    .title-last svg {
        width: 18px;
    }

    .support-1-left-top>.main-text {
        margin-top: 12px;
    }

    .support-1-left-top .white-btn {
        margin-top: 28px;
    }

    .support-2-left-bottom>.main-text {
        margin-top: 12px;
    }

    .support-2-left-bottom>.btns-row {
        margin-top: 16px;
    }

    .support-1-left,
    .support-1-right {
        width: 100%;
    }

    .support-1-right {
        max-height: none !important;
        height: auto;
    }

    .faq-panel.open {
        max-height: 200px;
        overflow-y: auto;
        position: absolute;
    }

    .faq-panel.open::-webkit-scrollbar {
        width: 4px;
    }

    .faq-panel.open::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 2px;
    }

    .faq-panel.open::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }

    .faq-panel.open::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .faq-answer-block {
        max-height: 200px;
    }

    .support-1 .wrapper {
        gap: 28px;
    }

    .support-1-right>*:not(.faq-answer-block) {
        margin-right: 10px;
    }

    .support-1-right {
        padding-right: 6px;
    }

    .faq-answer-block {
        padding-right: 6px;
    }

    .faq-list {
        overflow-y: unset;
    }

}

/* Анимация появления */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-panel.open {
    animation: slideDown .25s ease;
}


/* Второй экран */

.support-2 .wrapper {
    gap: 40px;
}

.support-2-slide {
    height: auto;
    max-width: 600px;
    display: flex !important;
    flex-shrink: 0;
}

.support-2-img {
    width: 100%;
    height: 324px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.support-2-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.support-2-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(220.64deg, rgba(255, 255, 255, 0.2) -11.67%, rgba(255, 255, 255, 0) 120.95%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.support-2-slide>.main-text {
    margin-top: 32px;
}

.support-2-slide>.section-subtitle {
    margin-top: 16px;
}

.support-2-hars {
    margin-top: 32px;
    gap: 12px;
    margin-bottom: 32px;
}

.support-2-har {
    background-color: rgba(100, 51, 221, 0.2);
    border-radius: 16px;
    padding: 12px 16px;
    gap: 5px;
    align-items: center;
}

.support-2-har img {
    max-width: 20px;
    height: auto;
    flex-shrink: 0;
}

.support-2-slide>.white-btn {
    margin-top: auto;
}


@media(max-width: 768px) {
    .support-2-swiper .swiper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

.studying-video-section .wrapper {
    gap: 40px;
}

.studying-videos {
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}

.studying-video {
    gap: 25px;
    width: 44%;
}

.studuing-video-image {
    position: relative;
    max-width: 496px;
    border-radius: 24px;
    overflow: hidden;
    height: auto;
}

.studuing-video-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: -2;
}

.studuing-video-image div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(136.63deg, rgba(255, 255, 255, 0.2) -8.8%, rgba(255, 255, 255, 0) 91.26%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.studying-video span {
    transition: all .3s;
}

.studying-video:hover span {
    color: var(--purple) !important;
}

@media(max-width: 1240px) {
    .studying-video {
        gap: 25px;
        width: 50%;
    }
}

@media(max-width: 768px) {
    .studying-video-section .wrapper {
        gap: 24px;
    }

    .studying-videos {
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
    }

    .studying-video {
        gap: 12px;
        width: 100%;
    }
}

/* Табы */
.tabs-header {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
    margin-top: 40px;
}

.document-group {
    gap: 24px;
}

.tabs-header div {
    width: 4px;
    height: 4px;
    background-color: var(--light-grey);
    border-radius: 50%;
}

.tab-content {
    display: none;
    gap: 20px;
}

.tab-content.active {
    display: flex;
}

.tab-btn {
    cursor: pointer;
    color: var(--dark-grey);
    transition: all .3s;
}

.tab-btn:not(.active):hover {
    color: rgba(255, 255, 255, 0.7);
}

.tab-btn.active {
    color: #fff;
}

/* Аккордеон */
.documents-column {
    overflow: hidden;
    transition: all 0.3s ease;
    gap: 16px;
}

.documents-group-item:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(217, 217, 217, 0.2);
}

.documents-group-top {
    cursor: pointer;
    gap: 18px;
    align-items: center;
    transform: all .3s;
}

.documents-group-top span {
    transition: all .3s;
}

.documents-group-top:hover span {
    color: #fff !important;
}

.documents-group-top:hover svg g {
    opacity: 1;
}

/* Анимация иконки */
.open .documents-group-top svg {
    transform: rotate(180deg);
}

.documents-group-top svg,
.documents-group-top svg g {
    transition: all 0.3s ease;
}

.download-item {
    gap: 16px;
    align-items: center;
    cursor: pointer;
}

.download-item span {
    transition: all .3s;
}

.download-item svg {
    opacity: 0.6;
    transition: all .3s;
}

.downloads-column {
    transition: all .3s;
    padding-left: 37px;
    padding-top: 24px;
    gap: 16px;
}

.downloads-column .download-item svg {
    opacity: 0.4;
}

.download-item:hover span {
    color: #fff !important;
}

.download-item:hover svg {
    opacity: 1;
}

@media(max-width: 768px) {
    .tabs-header {
        margin-bottom: 16px;
        gap: 12px;
        margin-top: 20px;
    }

    .document-group {
        gap: 16px;
    }

    .tab-content {
        gap: 16px;
    }

    .documents-column {
        gap: 12px;
    }

    .documents-group-item:not(:last-child) {
        padding-bottom: 12px;
    }

    .documents-group-top {
        gap: 10px;
    }

    .download-item {
        gap: 12px;
    }

    .downloads-column {
        padding-left: 20px;
        padding-top: 16px;
        gap: 12px;
    }

    .support-1-right:has(.faq-panel.open) {
        min-height: 350px;
    }
}

.tooltip-description{
    margin-top: 20px;
}