.block3 {
    position: relative;
    padding: 64px 0 100px;
    background: #FFFFFF;
    border-radius: 60px 60px 0 0;
    top: -90px;
}

.block3-title {
    width: 100%;
    max-width: 1201px;
    margin: 0 auto 64px auto;
    padding-top: 64px;

    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #000000;
}

.navigation-tabs {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 0px;

    width: 1201px;
    max-width: 90%;
    height: 40px;
    margin: 0 auto 40px auto;

    background: #FFFFFF;
    border: 1px solid #D4DEFE;
    backdrop-filter: blur(2px);
    border-radius: 20px;
}

.tab {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 21px;
    gap: 10px;

    width: 129px;
    height: 40px;

    border-radius: 24.5px;

    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;

    color: #858383;
    cursor: pointer;
    transition: all 0.3s ease;

    flex: none;
    order: 0;
    flex-grow: 0;
}

.tab.active {
    background: linear-gradient(95.49deg, rgba(194, 191, 255, 0.2) 0%, rgba(166, 226, 255, 0.2) 100%);
    color: #000000;
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24.5px;
    padding: 1px;
    background: linear-gradient(95.49deg, #C2BFFF 0%, #A6E2FF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    z-index: -1;
}

.tab:hover:not(.active) {
    background: rgba(133, 131, 131, 0.1);
}

.block3-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-top: 40px;
    padding: 0;
    max-width: 1201px;
    margin-left: auto;
    margin-right: auto;
}

.block3-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;

    width: 291px;
    margin-top: 100px;
}

.block3-text-title {
    width: 280px;
    height: 44px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;

    color: #000000;

    flex: none;
    order: 0;
    flex-grow: 0;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;

    width: 276px;
    height: 34px;

    flex: none;
    order: 0;
    flex-grow: 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-description {
    width: 244px;
    height: 34px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;

    color: #000000;

    flex: none;
    order: 1;
    flex-grow: 0;
}

.feature-description strong {
    font-weight: 600;
}

/* Tab content */
.tab-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0s linear 0.5s;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.tab-container {
    position: relative;
    min-height: 600px;
}

/* Изображение справа */
.block3-image {
    width: 895px;
    height: 558px;
    flex-shrink: 0;
}

.block3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #E5E6FD;
    border-radius: 20px;
}

/* Адаптивность */
@media (max-width: 1440px) {
    .block3-title {
        width: 90%;
        left: 5%;
        font-size: 36px;
        line-height: 44px;
    }

    .navigation-tabs {
        width: 90%;
        left: 5%;
    }

    .block3-content {
        padding: 0 5%;
        flex-direction: column;
        gap: 40px;
    }

    .block3-image {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .block3-text {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .block3 {
        padding: 48px 0 80px;
        overflow: hidden;
        margin-top: -80px;
    }

    .block3-title {
        display: block;
        padding: 0 16px;
        margin: 0 auto 24px;
        font-size: clamp(22px, 6vw, 34px);
        line-height: 1.25;
        /*text-align: left;*/
        text-align: center;
    }

    .navigation-tabs {
        width: 100%;
        max-width: none;
        margin: 15px;
        flex-direction: row;
        padding: 2px -1px;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-right: -179px;
        /* padding-left: 0px; */

    }

    .navigation-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        flex: 0 0 auto;
        width: auto;
        padding: 10px 18px;
        scroll-snap-align: center;
        white-space: nowrap;
        margin: 0;
    }
    .tab:first-child {
        margin-left: -1px;
    }
    .tab:last-child {
        margin-left: 1px;
    }

    .tab-container {
        position: static;
        min-height: 0;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .tab-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: opacity 0.25s ease-in-out;
        display: none;
    }

    .tab-content.active {
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .block3-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 24px;
        padding: 0 16px;
    }

    .block3-text {
        width: 100%;
        margin-top: 0;
        gap: 20px;
    }

    .block3-text-title {
        width: 100%;
        height: auto;
        font-size: 16px;
        line-height: 20px;
    }

    .feature-item {
        width: 100%;
        height: auto;
        gap: 12px;
        align-items: flex-start;
    }

    .feature-description {
        width: auto;
        height: auto;
        font-size: 15px;
        line-height: 22px;
        display: block;
        flex: 1 1 auto;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .block3-image {
        width: 100%;
        height: auto;
        margin-top: 24px;
    }

    .block3-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.navigation-tabs {
    --tab-h: 40px;
}

.tab {
    height: var(--tab-h);
    border-radius: 24.5px;
}

.tab.active {
    position: relative;
    border: 1px solid transparent;
    /* background-image:
        linear-gradient(95.49deg, rgba(194, 191, 255, 0.2) 0%, rgba(166, 226, 255, 0.2) 100%),
        linear-gradient(95.49deg, #C2BFFF 0%, #A6E2FF 100%); */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #000;
}

.tab.active::before {
    content: none !important;
}

.tab:hover:not(.active) {
    background: rgba(133, 131, 131, 0.1);
}

@media (max-width: 767px) {
    .tab {
        height: 40px;
        border-radius: 24.5px;
    }
}