.category-info:has(.alandings) {
    overflow: unset;
}

.alandings {
    font-family: 'Montserrat', sans-serif;
    border-radius: 16px;
}

.ainform {
    margin: 0 0 40px;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ainform img {
    margin: 0;
    padding: 0;
    object-fit: contain;
    width: 100%;
    border-radius: 0 0 30px 30px;
}

.ainform h2 {
    margin: 0;
    position: absolute;
    top: 120px;
    left: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    max-width: 825px;
}

.ainform h2 span {
    color: #F3E3CD;
}

.ainform__text {
    margin: -280px 30px 0 auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    background: rgba(22, 37, 29, 0.80);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(30px);
    max-width: 750px;
}

.ainform__text p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

@media screen and (max-width: 1599px) {
    .ainform {
        margin: 0;
    }
    .ainform h2 {
        top: 70px;
    }
    .ainform__text {
        margin: -200px 30px 0 auto;
    }
}

@media screen and (max-width: 1344px) {
    .ainform h2 {
        font-size: 40px;
        max-width: 665px;
    }
    .ainform__text {
        margin: -150px 30px 0 auto;
        max-width: 660px;
    }
    .ainform__text p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .ainform h2 {
        top: 50px;
        font-size: 35px;
        max-width: 585px;
    }
    .ainform__text {
        margin: -100px auto 0;
        max-width: calc(100% - 60px);
    }
}

@media screen and (max-width: 991px) {
    .ainform h2 {
        top: 30px;
        left: 30px;
    }
    .ainform__text {
        margin: -80px auto 0;
    }
}

@media screen and (max-width: 767px) {
    .ainform h2 {
        font-size: 30px;
        max-width: 585px;
    }
    .ainform__text {
        margin: -60px auto 0;
        max-width: calc(100% - 40px);
    }
    .ainform__text p {
        font-size: 14px;
    }
}

@media screen and (max-width: 567px) {
    .ainform h2 {
        margin: 20px 0 14px;
        position: relative;
        top: unset;
        left: unset;
        max-width: unset;
        color: #020A0A;
    }
    .ainform h2 span {
        color: #266141;
    }
    .ainform__text {
        margin: 0;
        padding: 20px;
        max-width: 100%;
    }
}

.aatention {
    margin: 100px 50px 200px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.aatention h3 {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    max-width: 640px;
}

.aatention h3 span {
    color: #266141;
}

.aatention-slider-container {
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.aatention-swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px;              /* место для тени */
    margin: -20px;              /* чтобы визуально не ломать сетку */
    width: calc(100% + 40px);   /* компенсируем padding */
}

.aatention-swiper-slide {
    margin: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    overflow: hidden;
    height: 255px;
}

.aatention-slide-image {
    margin: 0;
    object-fit: contain;
    width: 100%;
    max-width: 80px;
}

.aatention-swiper-slide h4 {
    margin: 20px 0 10px;
    padding: 0;
    color: #020A0A;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.aatention-swiper-slide h4 span {
    color: #266141;
}

.aatention-swiper-slide p {
    margin: 0;
    padding: 0;
    color: #5B6770;
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
}

/* Прогрессбар */
.aatention-slider-progress {
    width: calc(100% - 170px);
    height: 5px;
    background: #E4E4E4;
    margin: 50px 0 0;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    position: relative;
}

.aatention-progress-bar {
    height: 100%;
    background: #266141;
    width: 24%; /* Начальное заполнение для 1 слайда из 8 */
    transition: width 0.3s ease;
}

/* Дополнительный элемент для визуального отображения начального прогресса */
.aatention-initial-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #266141;
    width: 24%;
    border-radius: 5px;
    transition: opacity 0.5s ease;
}

/* Пагинация (точки) */
.aatention-slider-pagination {
    display: none;
    justify-content: center;
    margin: 45px auto 0;
}

.aatention-swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aatention-swiper-pagination-bullet-active {
    background: #266141;
}

/* Кнопки навигации */
.aatention-slider-navigation {
    margin: -30px 0 0;
    align-self: flex-end;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.aatention-nav-button {
    width: 60px;
    height: 60px;
    border: 1px solid #266141;
    border-radius: 150px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.aatention-nav-button:hover {
    background: #266141;
}

.aatention-nav-button:hover svg path {
    fill: white;
}

.aatention-nav-button:active {
    background: #22372C;
}

.aatention-nav-button:active svg path {
    fill: white;
}




.aatention-nav-button:disabled {
    cursor: not-allowed;
    background: white;
    border: 1px solid #ddd;
}

.aatention-nav-button:disabled svg {
    stroke: #ddd;
}

.aatention-nav-button:disabled svg path {
    fill: #ddd;
}


.aatention-nav-button svg {
    margin: 0;
    padding: 0;
    width: 10px;
    height: 20px;
    stroke: #266141;
    transition: all 0.3s ease;
}

.aatention-nav-button svg path {
    transition: all 0.3s ease;
}

@media screen and (max-width: 1599px) {
    .aatention-swiper-slide {
        height: 285px;
    }
}

@media screen and (max-width: 1344px) {
    .aatention {
        margin: 50px 50px 140px;
    }
    .aatention h3 {
        font-size: 30px;
        max-width: 500px;
    }
    .aatention-swiper-slide {
        margin: 0;
        height: 260px;
    }
    .aatention-swiper-slide h4 {
        font-size: 20px;
    }
    .aatention-swiper-slide p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .aatention {
        margin: 50px 30px 130px;
    }
    .aatention h2 {
        font-size: 28px;
        max-width: 507px;
    }
    .aatention-swiper-slide {
        padding: 30px 25px;
        border-radius: 20px;
        height: 280px;
    }
}

@media screen and (max-width: 991px) {
    .aatention {
        margin: 50px 30px 130px;
    }
    .aatention-swiper-slide {
        height: 100%;
    }
    .aatention-slider-navigation {
        gap: 30px;
    }
    .aatention-nav-button {
        width: 60px;
        height: 60px;
    }
    .aatention-nav-button svg {
        width: 12px;
        height: 24px;
    }
    .aatention-slider-navigation {
        display: none;
    }
    .aatention-slider-progress {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .aatention {
        margin: 50px 20px 110px;
        gap: 20px;
    }
    .aatention h3 {
        font-size: 24px;
        max-width: 410px;
    }
    .aatention-swiper-slide {
        border-radius: 15px;
        height: 225px;
    }
    .aatention-swiper-slide h4 {
        font-size: 18px;
    }
    .aatention-swiper-slide p {
        font-size: 14px;
    }
}

@media screen and (max-width: 567px) {
    .aatention {
        margin: 50px 10px 100px;
    }
    .aatention-swiper-slide {
        padding: 20px;
        gap: 20px;
        border-radius: 15px;
        height: 285px;
    }
}

.aoptisys {
    margin: 0;
    padding: 0 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.aoptisys__title {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 985px;
    z-index: 3;
}

.aoptisys__title h2 {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    max-width: 685px;
}

.aoptisys__title h2 span {
    color: #266141;
}

.aoptisys__title p {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.aoptisys__title p a {
    color: #266141;
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: pointer;
}

.aoptisys__image {
    position: absolute;
    bottom: -100px;
    left: 0;
    object-fit: contain;
    width: 100%;
    max-width: 930px;
    z-index: 2;
}

.aoptisys__content {
    margin: 0 0 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 715px;
    z-index: 3;
}

.aoptisys__content h3 {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 40px;
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
}

.aoptisys__content h3 span {
    color: #266141;
}

.aoptisys__list {
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aoptisys__item {
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
}

.aoptisys__item-title {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: space-between;
}

.aoptisys__item-title h4 {
    margin: auto 0;
    padding: 0;
    color: #020A0A;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.aoptisys__item-title img {
    margin: auto 0;
    padding: 0;
    object-fit: contain;
    width: 100%;
    max-width: 80px;
}

.aoptisys__item p {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

@media screen and (max-width: 1599px) {
    .aoptisys__image {
        bottom: 10px;
        left: 0;
        max-width: 696px;
    }
    .aoptisys__content {
        margin: 0;
        max-width: 100%;
    }
    .aoptisys__content h3 {
        max-width: 527px;
    }
    .aoptisys__list {
        margin: 0 0 0 auto;
        max-width: 635px;
    }
}

@media screen and (max-width: 1344px) {
    .aoptisys__title h2 {
        font-size: 40px;
        max-width: 543px;
    }
    .aoptisys__title p {
        font-size: 16px;
    }
    .aoptisys__content h3 {
        font-size: 30px;
        max-width: unset;
    }
    .aoptisys__image {
        bottom: -50px;
        left: 0;
        max-width: 696px;
    }
    .aoptisys__list {
        max-width: 546px;
    }
    .aoptisys__item-title h4 {
        font-size: 20px;
    }
    .aoptisys__item-title img {
        max-width: 60px;
    }
    .aoptisys__item p {
        font-size: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .aoptisys {
        padding: 0 30px;
        gap: 50px;
    }
    .aoptisys__title {
        gap: 30px;
        max-width: unset;
    }
    .aoptisys__title h2 {
        font-size: 35px;
        max-width: 530px;
    }
    .aoptisys__image {
        bottom: 50px;
        left: 0;
        max-width: 577px;
    }
    .aoptisys__content h3 {
        font-size: 28px;
        max-width: unset;
    }
    .aoptisys__list {
        max-width: 450px;
    }
}

@media screen and (max-width: 991px) {
    .aoptisys__image {
        position: relative;
        bottom: unset;
        left: unset;
        max-width: 100%;
    }
    .aoptisys__list {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .aoptisys {
        padding: 0 20px;
        gap: 50px;
    }
    .aoptisys__title {
        gap: 20px;
    }
    .aoptisys__title h2 {
        font-size: 30px;
        max-width: unset;
    }
    .aoptisys__title p {
        font-size: 14px;
    }
    .aoptisys__content h3 {
        font-size: 24px;
    }
    .aoptisys__item-title h4 {
        font-size: 18px;
    }
    .aoptisys__item p {
        font-size: 14px;
    }
}

@media screen and (max-width: 567px) {
    .aoptisys {
        padding: 0 10px;
    }
    .aoptisys__item-title {
        flex-direction: column;
        gap: 20px;
    }
}

.awebs {
    margin: 200px 0 250px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.awebs__top {
    margin: 0;
    padding: 50px;
    position: relative;
    height: 510px;
    background-color: #22372C;
    border-radius: 30px 0 0 0;
    z-index: 2;
}

.awebs__top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 950px;
    height: 100%;
    background-image: url(/image/catalog/landings/fiber-green-1-4x24sfp/awebs_ornament.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}

.awebs__wrapper {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: -20px;
    background-color: #22372C;
    background-image: linear-gradient(90deg, #22372C 50%, #FFF 50%);
    width: 510px;
    height: 510px;
    z-index: 2;
}

.awebs__wrapper-animation {
    margin: auto 0 auto auto;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
    border: 20px solid #fff;
    border-radius: 1000px;
    overflow: hidden;
}

.awebs__wrapper-animation-lens {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 3;
}

.awebs__wrapper-animation-bg {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;

    transform-origin: 50% 50%;
    animation: awebsZoomLoop 3s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes awebsZoomLoop {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-50%, 220%) scale(8);
    }
}

.awebs__title {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 860px;
    z-index: 3;
}

.awebs__title h2 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
}

.awebs__title h2 span {
    color: #F3E3CD;
}

.awebs__title p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.awebs__title p span {
    color: #F3E3CD;
}

.awebs__bottom {
    margin: 0;
    padding: 100px 50px 0;
    position: relative;
    border-radius: 0 30px 30px 30px;
    background: linear-gradient(0deg, #266141 0%, rgba(38, 97, 65, 0.00) 100%), #22372C;
    z-index: 3;
}

.awebs__hunter {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 100%;
    max-width: 1230px;
    object-fit: contain;
}

.awebs__list {
    margin: 0 0 -64px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
}

.awebs__item {
    margin: auto 0 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    background: rgba(2, 10, 10, 0.70);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(45px);
}

.awebs__item:nth-child(3) {
    height: 100%;
}
.awebs__item:nth-child(2) {
    height: calc(100% - 50px);
}
.awebs__item:nth-child(1) {
    height: calc(100% - 100px);
}

.awebs__item h3 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
}

.awebs__item p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.awebs__item p a {
    color: #F3E3CD;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: pointer;
}

@media screen and (max-width: 1599px) {
    .awebs {
        margin: 150px 0 200px;
    }
    .awebs__top::after {
        width: 710px;
    }
    .awebs__title {
        max-width: 710px;
    }
    .awebs__title p {
        max-width: 660px;
    }
    .awebs__bottom {
        padding: 165px 50px 0;
    }
    .awebs__list {
        margin: 0 0 -135px;
    }
    .awebs__hunter {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 1250px;
        object-fit: contain;
    }
}

@media screen and (max-width: 1344px) {
    .awebs {
        margin: 150px 0 300px;
    }
    .awebs__title {
        max-width: 580px;
    }
    .awebs__title h2 {
        font-size: 40px;
    }
    .awebs__title p {
        max-width: 530px;
        font-size: 16px;
    }
    .awebs__list {
        margin: 0 0 -160px;
    }
    .awebs__item h3 {
        font-size: 20px;
    }
    .awebs__item p {
        font-size: 16px;
    }
    .awebs__hunter {
        bottom: 0;
        left: 0;
    }
}

@media screen and (max-width: 1199px) {
    .awebs {
        margin: 130px 0 160px;
    }
    .awebs__top {
        padding: 30px;
        height: 400px;
    }
    .awebs__top::after {
        width: 550px;
    }
    .awebs__wrapper {
        right: -15px;
        width: 400px;
        height: 400px;
    }
    .awebs__wrapper-animation {
        border: 15px solid #fff;
    }
    .awebs__title {
        max-width: 485px;
        gap: 30px;
    }
    .awebs__title h2 {
        font-size: 35px;
    }
    .awebs__title p {
        max-width: 475px;
    }
    .awebs__bottom {
        padding: 215px 50px 0;
    }
    .awebs__hunter {
        bottom: unset;
        left: 0;
        top: -130px;
        max-width: 870px;
    }
    .awebs__list {
        margin: 0 0 -30px;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, minmax(min-content, max-content));
        gap: 20px;
    }
    .awebs__item:nth-child(3) {
        grid-area: 2 / 1 / 3 / 3;
        height: auto;
    }
    .awebs__item:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
        height: auto;
    }
    .awebs__item:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
        height: auto;
    }
}

@media screen and (max-width: 991px) {
    .awebs {
        margin: 120px 0 160px;
    }
    .awebs__top {
        padding: 0;
        height: auto;
        border-radius: 30px 30px 0 0;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .awebs__top::after {
        content: none;
    }
    .awebs__wrapper {
        margin: 0;
        padding: 0;
        position: relative;
        top: unset;
        right: unset;
        background-image: linear-gradient(0deg, #22372C 50%, #FFF 50%);
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .awebs__title {
        margin: 0 30px 30px;
        gap: 30px;
        max-width: unset;
    }
    .awebs__title h2 {
        font-size: 35px;
        max-width: unset;
    }
    .awebs__title p {
        max-width: unset;
    }
    .awebs__hunter {
        position: relative;
        left: unset;
        top: unset;
        max-width: 100%;
    }
    .awebs__bottom {
        padding: 0;
        border-radius: 0 0 30px 30px;
    }
    .awebs__list {
        margin: -20px 30px -30px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, minmax(min-content, max-content));
    }
    .awebs__item:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
        height: auto;
    }
    .awebs__item:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
        height: auto;
    }
    .awebs__item:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .awebs__title {
        margin: 0 20px 30px;
        gap: 20px;
        max-width: unset;
    }
    .awebs__title h2 {
        font-size: 30px;
    }
    .awebs__title p {
        font-size: 14px;
    }
    .awebs__list {
        margin: -20px 20px -30px;
    }
    .awebs__item h3 {
        font-size: 18px;
    }
    .awebs__item p {
        font-size: 14px;
    }
}

@media screen and (max-width: 567px) {
    .awebs {
        margin: 110px 0 120px;
    }
}

.asteps {
    margin: 0;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.asteps__text {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.asteps__text h2 {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    max-width: 695px;
}

.asteps__text h2 span {
    color: #266141;
}

.asteps__text p {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    max-width: 1165px;
}

.asteps__content {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}











.amech-scope {
    width: 100%;
    max-width: 665px;
    margin: auto 0;
  }

  .amech-scope-grid {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: 1fr 52px;
    gap: 12px;
    align-items: stretch;
  }

  .amech-scope-y {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 565px;
    margin: auto 0;
  }

  .amech-scope-x {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .amech-scope-x-inner {
    width: 565px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .amech-scope-empty {
    width: 52px;
    height: 52px;
  }

  .amech-scope-stage {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
  }

  .amech-scope-viewport {
    position: relative;
    width: 545px;
    height: 495px;
  }

  .amech-scope-bg {
    display: block;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
  }

  .amech-scope-reticle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    pointer-events: none;
  }

  .amech-scope-label {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: #ffffff !important;
    color: #020a0a !important;
    font-size: 18px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  }

  .amech-active {
    background: #1f6b4a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(31, 107, 74, 0.28);
  }

.asteps__content-image {
    margin: auto 0;
    padding: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


@media screen and (max-width: 1599px) {
    .amech-scope {
        max-width: 565px;
      }
      .amech-scope-y {
        height: 500px;
      }
      .amech-scope-x-inner {
        width: 500px;
      }
      .amech-scope-viewport {
        position: relative;
        width: 440px;
        height: 445px;
      }
}

@media screen and (max-width: 1344px) {
    .asteps__text h2 {
        font-size: 40px;
        max-width: 555px;
    }
    .asteps__text p {
        font-size: 16px;
        max-width: unset;
    }
    .amech-scope {
        max-width: 500px;
      }
      .amech-scope-y {
        height: 420px;
      }
      .amech-scope-x-inner {
        width: 420px;
      }
      .amech-scope-viewport {
        width: 380px;
        height: 380px;
      }
      .amech-scope-label {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 100%;
      }
}

@media screen and (max-width: 1199px) {
    .asteps {
        padding: 0 30px;
    }
    .asteps__text h2 {
        font-size: 35px;
        max-width: 555px;
    }
    .amech-scope {
        max-width: 425px;
    }
    .amech-scope-grid {
        grid-template-columns: 40px 1fr;
        grid-template-rows: 1fr 40px;
        gap: 12px;
      }
    .amech-scope-y {
        height: 360px;
    }
    .amech-scope-x-inner {
        width: 360px;
    }
    .amech-scope-viewport {
        width: 320px;
        height: 320px;
    }
      .amech-scope-label {
        width: 35px;
        height: 35px;
        font-size: 14px;
        line-height: 100%;
    }
}

@media screen and (max-width: 991px) {
    .asteps__content {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .amech-scope {
        max-width: 100%;
        width: 100%;
      }
    
      .amech-scope-grid {
        width: 100%;
        grid-template-columns: 40px 1fr;
        grid-template-rows: 1fr 40px;
        gap: 10px;
      }
    
      .amech-scope-y {
        height: auto;
        min-height: 100%;
      }
    
      .amech-scope-x {
        width: 100%;
      }
    
      .amech-scope-x-inner {
        width: 100%;
      }
    
      .amech-scope-stage {
        width: 100%;
      }
    
      .amech-scope-viewport {
        width: 90%;
        aspect-ratio: 1 / 1;
        height: auto;
      }
    
      .amech-scope-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    
      .amech-scope-reticle {
        width: 50%;
        height: auto;
      }
    
      .amech-scope-label {
        width: 36px;
        height: 36px;
        font-size: 14px;
        line-height: 14px;
      }
    
      .amech-scope-empty {
        width: 40px;
        height: 40px;
      }
      .asteps__content-image {
        aspect-ratio: 1/1;
    }
}

@media screen and (max-width: 767px) {
    .asteps {
        padding: 0 20px;
    }
    .asteps__text h2 {
        font-size: 30px;
    }
    .asteps__text p {
        font-size: 14px;
    }
}

@media screen and (max-width: 567px) {
    .asteps {
        padding: 0 10px;
    }
    .asteps__text h2 {
        font-size: 28px;
        line-height: 120%;
      }
    
      .asteps__text p {
        font-size: 16px;
        line-height: 150%;
      }
    
      .asteps__content {
        gap: 10px;
      }
    
      .amech-scope {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
      }
    
      .amech-scope-grid {
        width: 100%;
        grid-template-columns: 28px 1fr;
        grid-template-rows: 1fr 28px;
        gap: 6px;
      }
    
      .amech-scope-stage,
      .amech-scope-x,
      .amech-scope-x-inner,
      .amech-scope-viewport {
        width: 100%;
        min-width: 0;
      }
    
      .amech-scope-viewport {
        aspect-ratio: 1 / 1;
        height: auto;
      }
    
      .amech-scope-y {
        height: 100%;
      }
    
      .amech-scope-x-inner {
        gap: 4px;
      }
    
      .amech-scope-label {
        width: 24px;
        height: 24px;
        font-size: 10px;
        line-height: 10px;
        border-radius: 4px;
        flex: 0 0 24px;
      }
    
      .amech-scope-empty {
        width: 28px;
        height: 28px;
      }
    
      .asteps__content-image {
        border-radius: 14px;
      }

}




.acompare {
    margin: 0;
    padding: 50px;
    position: relative;
    border-radius: 0 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}



.acompare__table-wrap {
    position: relative;
    border-radius: 24px;
    max-width: 100%;
    margin: 0;
    z-index: 3;
}





/* Скролл-контейнер */
.acompare__table-scroll {
    display: block;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;

    /* скрываем нативный скроллбар, но сам скролл остается */
    scrollbar-width: none;
    -ms-overflow-style: none;
    
    border: 3px solid #fff;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05); /* обязательно, иначе blur не будет заметен */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.acompare__table-scroll::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
}

.acompare__table-scroll::-webkit-scrollbar {
    height: 0;
}

/* Chrome/Safari */

.acompare__table-clip {
    display: inline-block;
    min-width: 100%;
    max-width: 945px;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.acompare__table {
    border-collapse: collapse;
    width: 100%;
    min-width: 100%;    
    
}

.acompare__table th {
    padding: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 75%;
    text-align: left;
    vertical-align: center;
    border-top: 3px solid #fff;
    height: 90px;
    background-color: #266141;
}

.acompare__table td {
    padding:  15px 30px;
    color: #020A0A;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    text-align: left;
    vertical-align: center;
    border-top: 3px solid #fff;
}

.acompare__table td:nth-child(1) {
    color: #266141;
    font-weight: 600;
}

.acompare__table td:nth-child(2) {
    font-weight: 500;
}



.acompare__table thead th {
    border-top: none;
    font-weight: 700;
}

.acompare__table th:not(:last-child),
.acompare__table td:not(:last-child) {
    border-right: 3px solid #fff;
}

.acompare__table tbody th {
    font-weight: 500;
    min-width: 220px;
    white-space: normal;
}


.acompare__table td:nth-child(1) {
    white-space: nowrap;
}

.acompare__table td:nth-child(2) {
    white-space: nowrap;
}

.acompare__table td:nth-child(3) {
    white-space: normal;
    word-break: break-word;
}

/* ===== Кастомный скроллбар снизу ===== */
.acompare__bar {
    margin-top: 20px;
    padding: 0;
    /* лёгкие внутренние отступы как на макете */
}

.acompare__bar-track {
    height: 3px;
    border-radius: 999px;
    background: #E4E4E4;
    position: relative;
    overflow: hidden;
}

.acompare__bar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 999px;
    background: #266141;
    /* под “зелёный” из примера */
    width: 40px;
    /* будет перезаписано JS */
    transform: translateX(0);
    cursor: grab;
}

.acompare__bar-thumb:active {
    cursor: grabbing;
}

.acompare__table tbody tr:nth-child(even) td {
    background: #F0F4F2;
}

@media screen and (max-width: 1344px) {
    .acompare__table th {
        font-size: 20px;
    }
    .acompare__table td {
        font-size: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .acompare {
        padding: 50px 30px 0;
    }
    .acompare__table th {
        padding: 20px;
    }
    .acompare__table td {
        padding:  10px 20px;
    }
}


@media screen and (max-width: 991px) {
    .acompare {
        padding: 40px 16px 0;
        gap: 24px;
    }

    .acompare__table-wrap {
        border-radius: 0;
    }

    .acompare__table-scroll {
        overflow: visible;
        border: none;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .acompare__table-clip {
        display: block;
        min-width: 100%;
        max-width: 100%;
        overflow: visible;
        border-radius: 0;
    }

    .acompare__table {
        display: block;
        width: 100%;
        min-width: 100%;
    }

    .acompare__table thead {
        display: none;
    }

    .acompare__table tbody {
        display: block;
    }

    .acompare__table tbody tr {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 18px;
    }

    .acompare__table tbody tr:last-child {
        margin-bottom: 0;
    }

    .acompare__table td {
        display: block;
        width: 100%;
        margin: 0;
        padding: 12px 14px;
        border: none !important;
        border-radius: 12px;
        font-size: 14px;
        line-height: 1.35;
        white-space: normal !important;
        word-break: break-word;
    }

    /* Верхний золотой/зелёный заголовок блока */
    .acompare__table td:first-child {
        background: #266141 !important;
        color: #fff !important;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.25;
        border-radius: 12px;
    }

    /* Серые карточки */
    .acompare__table td:not(:first-child) {
        background: #F3F3F3 !important;
        color: #020A0A;
        font-weight: 400;
    }

    /* Подпись над содержимым карточки */
    .acompare__table td:not(:first-child)::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 6px;
        color: #7F7F7F;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.2;
    }

    .acompare__bar {
        display: none !important;
    }
}

@media screen and (max-width: 567px) {
    .acompare {
        padding: 32px 12px 0;
    }

    .acompare__table td {
        padding: 12px;
    }

    .acompare__table td:first-child {
        font-size: 15px;
    }
}

.astamina {
    margin: 0;
    padding: 200px 0;
    position: relative;
    display: flex;
    z-index: 2;
}

.astamina__title {
    margin: 0;
    padding: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 535px;
    border-radius: 30px;
    background-color: #F0F4F2;
}

.astamina__title::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    bottom: 50px;
    height: calc(100% - 100px);
    width: 100%;
    background-image: url(/image/catalog/landings/fiber-green-1-4x24sfp/astamina_vector.svg);
    background-position: center left;
    background-size: contain;
    background-repeat: no-repeat;
}

.astamina__title h2 {
    margin: 0;
    padding: 0;
    max-width: 451px;
    color: #020A0A;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
}

.astamina__title h2 span {
    color: #266141;
}

.astamina__power {
    margin: auto 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 335px;
}

.astamina__power h4 {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.astamina__power p {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.astamina__balance {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 465px;
    height: 100%;
    width: 405px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background-color: #22372C;
    border-radius: 30px;
}

.astamina__balance::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/image/catalog/landings/fiber-green-1-4x24sfp/awebs_ornament.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    z-index: 2;
}

.astamina__balance h4 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    z-index: 3;
}

.astamina__balance p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    z-index: 3;
}

.astamina__balance p a {
    color: #F3E3CD;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    
    cursor: pointer;
}

.astamina__image {
    position: absolute;
    left: 0;
    top: 219px;
    object-fit: contain;
    width: 100%;
    max-width: 795px;
}

@media screen and (max-width: 1599px) {
    .astamina {
        padding: 150px 0;
    }
    .astamina__power {
        max-width: 290px;
    }
    .astamina__balance {
        right: 370px;
        width: 355px;
    }
    .astamina__image {
        top: 275px;
        max-width: 706px;
    }
}

@media screen and (max-width: 1344px) {
    .astamina {
        padding: 140px 0;
    }
    .astamina__title {
        min-height: 462px;
    }
    .astamina__title h2 {
        max-width: 381px;
        font-size: 40px;
    }
    .astamina__power {
        max-width: 255px;
    }
    .astamina__power h4 {
        font-size: 20px;
    }
    .astamina__power p {
        font-size: 16px;
    }
    .astamina__balance {
        right: 325px;
        width: 355px;
    }
    .astamina__balance h4 {
        font-size: 20px;
    }
    .astamina__balance p {
        font-size: 16px;
    }
    .astamina__image {
        top: 205px;
        max-width: 642px;
    }
}

@media screen and (max-width: 1199px) {
    .astamina {
        padding: 130px 0;
    }
    .astamina__title {
        padding: 50px 20px;
        min-height: 472px;
    }
    .astamina__title::after {
        left: 20px;
    }
    .astamina__title h2 {
        max-width: 321px;
        font-size: 35px;
    }
    .astamina__power {
        max-width: 225px;
    }
    .astamina__balance {
        right: 265px;
        width: 305px;
    }
    .astamina__image {
        top: 290px;
        max-width: 520px;
    }
}

@media screen and (max-width: 991px) {
    .astamina {
        padding: 120px 0;
    }
    .astamina__title {
        margin: 0 30px;
        padding: 20px 20px 0;
        flex-direction: column;
        justify-content: space-between;
        min-height: unset;
    }
    .astamina__title::after {
        top: 225px;
        left: 70px;
        bottom: unset;
        height: 100%;
        width: calc(100% - 140px);
        background-image: url(/image/catalog/landings/fiber-green-1-4x24sfp/astamina_vector.svg);
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .astamina__title h2 {
        max-width: unset;
        font-size: 35px;
        order: 1;
    }
    .astamina__power {
        margin: 40px 0 16px;
        max-width: unset;
        order: 2;
    }
    .astamina__image {
        position: relative;
        left: unset;
        top: unset;
        object-fit: contain;
        width: 100%;
        max-width: 100%;
        order: 3;
    }
    .astamina__balance {
        margin: -100px 0 0 -50px;
        position: relative;
        top: unset;
        bottom: unset;
        right: unset;
        height: auto;
        width: calc(100% + 100px);
        padding: 20px;
        order: 4;
    }
}

@media screen and (max-width: 767px) {
    .astamina {
        padding: 110px 0;
    }
    .astamina__title {
        margin: 0 20px;
        padding: 20px 20px 0;
    }
    .astamina__title::after {
        top: 180px;
        left: 70px;
        bottom: unset;
        height: calc(100% - 180px);
        width: calc(100% - 140px);
        background-image: url(/image/catalog/landings/fiber-green-1-4x24sfp/astamina_vector.svg);
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .astamina__title h2 {
        font-size: 30px;
    }
    .astamina__power h4 {
        font-size: 18px;
    }
    .astamina__power p {
        font-size: 14px;
    }
    .astamina__balance {
        margin: -100px 0 0 -40px;
        width: calc(100% + 80px);
        padding: 40px 20px;
        order: 4;
    }
    .astamina__balance h4 {
        font-size: 18px;
    }
    .astamina__balance p {
        font-size: 14px;
    }
}

@media screen and (max-width: 567px) {
    .astamina {
        padding: 100px 0;
    }
    .astamina__title {
        margin: 0;
        padding: 20px 10px 0;
    }
    .astamina__title::after {
        top: 280px;
        left: 20px;
        height: calc(100% - 280px);
        width: calc(100% - 40px);
    }
    .astamina__power {
        margin: 20px 0 10px;
    }
    .astamina__balance {
        margin: -50px 0 0 -10px;
        width: calc(100% + 20px);
        padding: 20px;
    }
}


.awarranty {
    margin: 0;
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #22372C;
    border-radius: 30px;
    z-index: 3;
    overflow: hidden;
}

.awarranty::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/image/catalog/landings/fiber-green-1-4x24sfp/awebs_ornament.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    z-index: 2;
}

.awarranty__title {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 888px;
    z-index: 4;
}

.awarranty__title h2 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
}

.awarranty__title h2 span {
    color: #F3E3CD;
}

.awarranty__title p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.awarranty__text {
    margin: 100px 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 787px;
    z-index: 4;
}

.awarranty__text h3 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    max-width: 540px;
}

.awarranty__text p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.awarranty__buttons {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    z-index: 4;
}

.awarranty__image {
    position: absolute;
    top: -150px;
    right: -150px;
    object-fit: contain;
    width: 100%;
    max-width: 1100px;
}










/* 1button */
.awarranty__cta-button {
    width: 470px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 5px 5px 5px 30px;
    border-radius: 40px;
    border: 1px solid #fff;
    background: #266141;
    text-decoration: none;
    cursor: pointer;
}

.awarranty__cta-label {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
}

.awarranty__cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    display: grid;
    place-items: center;
}

@media (hover:hover) {
    .awarranty__cta-button:hover {
        filter: brightness(1.25);
    }
}








/* 2button */

.aautotents__content-item-hyperlink {
    text-decoration: none;
    color: inherit;
}

.aautotents__content-item-btn {
    margin: 0;
    padding: 5px;
    width: 550px;
    border-radius: 40px;
    border: 1px solid #020A0A;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.aautotents__content-item-btn p {
    margin: auto 5px auto 20px;
    padding: 0;
    color: #020A0A;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aautotents__content-item-btn-circle {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 60px;
    border-radius: 100px;
    background-color: #266141;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.aautotents__content-item-btn-circle-arrow {
    margin: auto;
    padding: 0;
    background-image: url(/image/catalog/landings/fiber-green-1-4x24sfp/white_arrow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
    width: 75px;
    height: 17px;
    transition: all 0.5s ease;
}

@media (hover:hover) {
    .aautotents__content-item-hyperlink:hover {
        filter: brightness(1.25);
    }
}


@media screen and (max-width: 1599px) {
    .awarranty__text {
        max-width: 680px;
    }
    .awarranty__image {
        max-width: 1000px;
    }
}

@media screen and (max-width: 1344px) {
    .awarranty__title {
        max-width: 788px;
    }
    .awarranty__title h2 {
        font-size: 40px;
    }
    .awarranty__title p {
        font-size: 16px;
    }
    .awarranty__text {
        max-width: 587px;
    }
    .awarranty__text h3 {
        font-size: 20px;
        max-width: 540px;
    }
    .awarranty__text p {
        font-size: 16px;
    }
    .awarranty__image {
        max-width: 1000px;
        right: -200px;
    }
}

@media screen and (max-width: 1199px) {
    .awarranty__title {
        max-width: 575px;
    }
    .awarranty__title h2 {
        font-size: 35px;
    }
    .awarranty__text {
        max-width: 457px;
    }
    .awarranty__text p {
        max-width: 410px;
    }
    .aautotents__content-item-btn {
        width: 435px;
    }
}

@media screen and (max-width: 991px) {
    .awarranty {
        padding: 50px 30px;
    }
    .awarranty__title {
        max-width: unset;
    }
    .awarranty__text {
        margin: 50px 0 125px;
        max-width: 450px;
    }
    .awarranty__text p {
        max-width: 360px;
    }
    .awarranty__image {
        top: 50px;
        right: -150px;
        max-width: 700px;
    }
    .awarranty__buttons {
        flex-direction: column;
        gap: 20px;
    }
    .awarranty__cta-button {
        width: 100%;
    }
    .aautotents__content-item-btn {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .awarranty {
        padding: 20px;
    }
    .awarranty__title h2 {
        font-size: 30px;
    }
    .awarranty__title p {
        font-size: 14px;
    }
    .awarranty__text {
        margin: 50px 0 175px;
        max-width: 450px;
    }
    .awarranty__text h3 {
        font-size: 18px;
    }
    .awarranty__text p {
        font-size: 14px;
    }
    .awarranty__image {
        top: 100px;
        right: -150px;
        max-width: 700px;
    }
}

@media screen and (max-width: 567px) {
    .awarranty__text {
        margin: 30px 0 255px;
        max-width: 450px;
    }
    .awarranty__image {
        top: unset;
        bottom: 50px;
        right: -130px;
        width: 200%;
    }
    .awarranty__cta-label {
        font-size: 14px;
    }
    .aautotents__content-item-btn p {
        font-size: 14px;
    }
    .aautotents__content-item-btn-circle {
        width: 95px;
    }
}

.aprophs {
    margin: 0;
    padding: 200px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.aprophs h2 {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
    max-width: 960px;
    z-index: 3;
}

.aprophs h2 span {
    color: #266141;
}

.aprophs ul {
    margin: 0;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.aprophs ul li {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
}

.aprophs ul li span {
    color: #266141;
    font-weight: 600;
}

.aprophs ul li::marker {
    color: #266141;
}

.aprophs img {
    position: absolute;
    top: 180px;
    right: 0;
    width: 100%;
    object-fit: contain;
    max-width: calc(100% - 100px);
    z-index: 2;
}

@media screen and (max-width: 1599px) {
    .aprophs {
        padding: 150px 50px;
    }
    .aprophs ul {
        padding: 0 0 0 35px;
    }
    .aprophs img {
        top: 200px;
        max-width: calc(100% - 100px);
    }
}

@media screen and (max-width: 1344px) {
    .aprophs {
        padding: 140px 50px;
    }
    .aprophs h2 {
        font-size: 40px;
        max-width: 860px;
    }
    .aprophs ul li {
        font-size: 20px;
    }
    .aprophs img {
        top: 150px;
        max-width: calc(100% - 100px);
    }
}

@media screen and (max-width: 1199px) {
    .aprophs {
        padding: 130px 30px;
        gap: 30px;
    }
    .aprophs h2 {
        font-size: 35px;
        max-width: unset;
    }
    .aprophs img {
        top: 215px;
        max-width: calc(100% - 150px);
    }
}

@media screen and (max-width: 991px) {
    .aprophs {
        padding: 120px 30px;
        gap: 30px;
    }
    .aprophs img {
        content: url(/image/catalog/landings/fiber-green-1-4x24sfp/aprophs_m.webp);
        position: relative;
        top: unset;
        right: unset;
        max-width: 100%;
        margin: -70px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .aprophs {
        padding: 110px 20px;
        gap: 20px;
    }
    .aprophs h2 {
        font-size: 30px;
    }
    .aprophs ul li {
        font-size: 18px;
    }
    .aprophs img {
        margin: -40px 0 0;
    }
}

@media screen and (max-width: 567px) {
    .aprophs {
        padding: 100px 10px;
    }
    .aprophs ul {
        padding: 0 0 0 25px;
    }
    .aprophs img {
        margin: -30px 0 0;
    }
}















.aquestions {
    margin: 0 0 50px;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.aquestions h2 {
    margin: 0;
    padding: 0;
    color: #020A0A;
    font-size: 50px;
    font-weight: 700;
    line-height: 120%;
}

.aquestions h2 span {
    color: #266141;
}

.aqaaccordion {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aqaaccordion-item {
    padding: 20px 30px;
    border-bottom: 1px solid #D9D9D9;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
}

.aqaaccordion-header {
    background: none;
    border: none;
    width: 100%;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    gap: 15px;
    align-items: center;
    color: #020A0A;
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    transition: color 0.3s ease;
}

.aqaaccordion-icon line {
    stroke: #020A0A;
    transition: stroke 0.3s ease;
}

.aqaaccordion-icon {
    margin: auto 0;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.aqaaccordion-item.active .aqaaccordion-header {
    color: #266141;
}

.aqaaccordion-item.active .aqaaccordion-icon {
    transform: rotate(180deg);
}

.aqaaccordion-item.active .aqaaccordion-icon line {
    stroke: #266141;
}

.aqaaccordion-verticalline {
    transition: opacity 0.3s ease, stroke 0.3s ease;
}

.aqaaccordion-item.active .aqaaccordion-verticalline {
    opacity: 0;
}

.aqaaccordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
}

.aqaaccordion-content p {
    margin: 0;
    padding: 0 0 0 30px;
    color: #020A0A;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.aqaaccordion-item.active .aqaaccordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}


@media screen and (max-width: 1344px) {
    .aquestions h2 {
        font-size: 40px;
    }
    .aqaaccordion-header {
        font-size: 20px;
    }
    .aqaaccordion-content p {
        font-size: 16px;
    }
}


@media screen and (max-width: 1199px) {
    .aquestions {
        padding: 0 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 991px) {
    .aquestions h2 {
        font-size: 35px;
    }
}

@media screen and (max-width: 767px) {
    .aquestions {
        padding: 0 20px;
        gap: 20px;
    }
    .aqaaccordion-item {
        padding: 10px 20px;
    }
    .aquestions h2 {
        font-size: 30px;
    }
    .aqaaccordion-header {
        font-size: 18px;
    }
    .aqaaccordion-content p {
        font-size: 14px;
    }

}

@media screen and (max-width: 567px) {
    .aqaaccordion-item {
        padding: 0 10px;
    }
}