﻿.manul-a1-page {
    background: var(--manul-bg);
}

.manul-a1-hero {
    padding: 0;
    background: var(--manul-bg);
}

.manul-a1-hero__shell {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #f1f2f5;
}

body.admin-bar .manul-a1-hero__shell {
    min-height: calc(100vh - 32px);
    height: calc(100vh - 32px);
}

@media (max-width: 782px) {
    body.admin-bar .manul-a1-hero__shell {
        min-height: calc(100svh - 46px);
        height: calc(100svh - 46px);
    }
}

.manul-a1-hero__bg,
.manul-a1-hero__overlay,
.manul-a1-hero__content {
    position: absolute;
    inset: 0;
}

.manul-a1-hero__bg {
    z-index: 1;
    background-image: var(--manul-a1-bg-desktop);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.manul-a1-hero__overlay {
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(243, 244, 247, 0.22) 0%,
            rgba(243, 244, 247, 0.08) 38%,
            rgba(243, 244, 247, 0.04) 100%
        );
    pointer-events: none;
}

.manul-a1-hero__content {
    --manul-a1-edge-offset-x: 36px;
    --manul-a1-edge-offset-y: 36px;

    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 182px var(--manul-a1-edge-offset-x) var(--manul-a1-edge-offset-y);
}

.manul-a1-hero__main {
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(420px, 0.95fr) minmax(220px, 0.55fr);
    gap: 28px;
    align-items: center;
    min-height: 0;
    flex: 1 1 auto;
}

.manul-a1-hero__copy {
    max-width: 680px;
    align-self: center;
}

.manul-a1-hero__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.manul-a1-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 9px 16px 8px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.manul-a1-badge--accent {
    background: #c0ea6c;
    color: #202524;
}

.manul-a1-badge--dark {
    background: #566963;
    color: #fafafa;
}

.manul-a1-hero__title {
    margin: 0;
    max-width: 760px;
    color: #202524;
    font-weight: 400;
    font-size: clamp(54px, 4.1vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.manul-a1-hero__desc {
    margin: 24px 0 0;
    max-width: 560px;
    color: rgba(32, 37, 36, 0.92);
    font-weight: 200;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: 0;
}

.manul-a1-hero__title-line,
.manul-a1-hero__desc-line {
    display: inline;
}

@media (min-width: 768px) {
    .manul-a1-hero__title-line--desktop-nowrap,
    .manul-a1-hero__desc-line--desktop-nowrap {
        white-space: nowrap;
    }
}

.manul-a1-hero__device-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.manul-a1-hero__device {
    width: min(100%, 560px);
    max-height: 66vh;
    object-fit: contain;
    display: block;
}

.manul-a1-hero__specs {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 100%;
    max-width: 252px;
    margin-left: auto;
    padding-right: 42px;
}

.manul-a1-spec {
    padding: 22px 0 26px;
    border-top: 1px solid rgba(32, 37, 36, 0.12);
}

.manul-a1-spec:first-child {
    border-top: 0;
    padding-top: 0;
}

.manul-a1-spec__value {
    color: #566963;
    font-weight: 400;
    font-size: clamp(52px, 4vw, 60px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.manul-a1-counter {
    display: inline-block;
    min-width: 2.3ch;
}

.manul-a1-spec__value span {
    font-size: 0.62em;
    vertical-align: 0.18em;
}

.manul-a1-spec__label {
    margin-top: 8px;
    color: #566963;
    font-weight: 200;
    font-size: 20px;
    line-height: 1.05;
}

.manul-a1-spec__label--mobile {
    display: none;
}

.manul-a1-hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    flex: 0 0 auto;
}

.manul-a1-hero__features {
    display: grid;
    grid-template-columns: 300px 430px;
    gap: 16px;
    align-items: stretch;
    min-width: 0;
}

.manul-a1-feature-card,
.manul-a1-buy-card {
    border-radius: 13px;
    background: rgba(250, 250, 250, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 0 0 1px rgba(32, 37, 36, 0.04);
}

.manul-a1-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 106px;
    padding: 24px 22px 22px;
}

.manul-a1-feature-card__icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #c6c7c9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.manul-a1-feature-card__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.manul-a1-feature-card__text {
    margin: 0;
    color: #202524;
    font-weight: 200;
    font-size: 19px;
    line-height: 1.2;
}

.manul-a1-buy-card {
    background: #c0ea6c;
    color: #202524;
    width: 144px;
    min-width: 144px;
    min-height: 140px;
    margin-right: calc(var(--manul-a1-edge-offset-x) * -1);
    margin-bottom: calc(var(--manul-a1-edge-offset-y) * -1);
    padding: 24px 20px 18px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-end;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.manul-a1-buy-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #465551;
    display: block;
}

.manul-a1-buy-card__text {
    display: block;
    color: #202524;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.18;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.manul-a1-hero__tagline-mobile {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .manul-a1-buy-card:hover {
        transform: translate(-3px, -3px);
    }
}

/* 1600-1799 */
@media (max-width: 1799px) {
    .manul-a1-hero__content {
    --manul-a1-edge-offset-x: 28px;
    --manul-a1-edge-offset-y: 28px;
    padding: 164px var(--manul-a1-edge-offset-x) var(--manul-a1-edge-offset-y);
}

    .manul-a1-hero__main {
        grid-template-columns: minmax(380px, 1.05fr) minmax(360px, 0.95fr) minmax(200px, 0.55fr);
        gap: 22px;
    }

    .manul-a1-hero__title {
        font-size: clamp(50px, 4vw, 64px);
    }

    .manul-a1-hero__desc {
        font-size: 20px;
        max-width: 520px;
    }

    .manul-a1-spec__label {
        font-size: 18px;
    }

    .manul-a1-hero__specs {
    max-width: 244px;
    padding-right: 38px;
}

.manul-a1-hero__bottom {
    gap: 24px;
}

.manul-a1-hero__features {
    grid-template-columns: 300px 390px;
}

    .manul-a1-feature-card__text {
        font-size: 18px;
    }
}

/* 1366-1599 */
@media (max-width: 1599px) {
    .manul-a1-hero__content {
        padding: 164px 28px 28px;
    }

    .manul-a1-hero__main {
        grid-template-columns: minmax(350px, 1fr) minmax(330px, 0.88fr) minmax(180px, 0.48fr);
        gap: 20px;
    }

    .manul-a1-hero__title {
        font-size: clamp(44px, 3.8vw, 58px);
        max-width: 620px;
    }

    .manul-a1-hero__desc {
        margin-top: 20px;
        font-size: 18px;
        max-width: 470px;
    }

    .manul-a1-hero__device {
        max-height: 60vh;
    }

    .manul-a1-spec__value {
        font-size: 52px;
    }

    .manul-a1-spec__label {
        font-size: 17px;
    }

    .manul-a1-hero__specs {
    max-width: 232px;
    padding-right: 34px;
}

.manul-a1-hero__bottom {
    gap: 18px;
}

.manul-a1-hero__features {
    grid-template-columns: 270px 360px;
    gap: 14px;
}

.manul-a1-buy-card {
    width: 136px;
    min-width: 136px;
    min-height: 126px;
}

    .manul-a1-feature-card {
        min-height: 96px;
        padding: 20px 18px;
    }

    .manul-a1-feature-card__text {
        font-size: 17px;
    }

    .manul-a1-buy-card {
        min-height: 126px;
        padding: 20px 16px 16px;
    }
}

/* tablet */
@media (max-width: 1199px) {
    .manul-a1-hero__shell {
        min-height: auto;
        height: auto;
    }

    body.admin-bar .manul-a1-hero__shell {
        min-height: auto;
        height: auto;
    }

    .manul-a1-hero__content {
    --manul-a1-edge-offset-x: 24px;
    --manul-a1-edge-offset-y: 24px;

    position: relative;
    inset: auto;
    min-height: 100svh;
    padding: 146px var(--manul-a1-edge-offset-x) var(--manul-a1-edge-offset-y);
}

    .manul-a1-hero__main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .manul-a1-hero__copy {
        order: 2;
        max-width: 100%;
    }

    .manul-a1-hero__device-wrap {
        order: 1;
    }

    .manul-a1-hero__specs {
    order: 3;
    max-width: none;
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

    .manul-a1-spec {
        border-top: 0;
        padding: 0;
    }

    .manul-a1-hero__bottom {
        margin-top: 24px;
        display: grid;
        grid-template-columns: 1fr 136px;
        gap: 14px;
        align-items: end;
    }

    .manul-a1-hero__features {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .manul-a1-buy-card {
        width: 136px;
        min-width: 136px;
        min-height: 126px;
        margin-right: 0;
    }
}

/* mobile */
@media (max-width: 767px) {
    .manul-a1-hero__bg {
        background-image: var(--manul-a1-bg-mobile);
        background-position: center top;
        background-size: cover;
    }

    .manul-a1-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(243, 244, 247, 0.06) 0%,
                rgba(243, 244, 247, 0.02) 100%
            );
    }

    .manul-a1-hero__content {
        min-height: auto;
        padding: calc(clamp(460px, 104vw, 520px) + var(--manul-admin-offset)) 19px 18px;
    }

    .manul-a1-hero__tagline-mobile {
        display: block;
        margin: 8px 0 0;
        max-width: 220px;
        color: #202524;
        font-weight: 200;
        font-size: 14px;
        line-height: 1.08;
    }

    .manul-a1-hero__main {
        gap: 0;
    }

    .manul-a1-hero__device-wrap {
        display: none;
    }

    .manul-a1-hero__copy {
        display: flex;
        flex-direction: column;
    }

    .manul-a1-hero__badges {
        order: 1;
        gap: 12px;
        margin-bottom: 22px;
    }

    .manul-a1-badge {
        min-height: 39px;
        padding: 10px 18px 9px;
        border-radius: 13px;
        font-size: 14px;
    }

    .manul-a1-hero__title {
        order: 2;
        max-width: none;
        font-size: 36px;
        line-height: 0.98;
        letter-spacing: -0.02em;
    }

    .manul-a1-hero__desc {
        order: 3;
        margin-top: 18px;
        max-width: none;
        font-size: 18px;
        line-height: 1.17;
    }

    .manul-a1-hero__specs {
        margin-top: 28px;
        gap: 10px;
    }

    .manul-a1-spec__value {
        font-size: 41px;
        line-height: 0.94;
    }

    .manul-a1-spec__label {
        font-size: 16px;
        line-height: 1.08;
    }

    .manul-a1-spec__label--desktop {
        display: none;
    }

    .manul-a1-spec__label--mobile {
        display: block;
    }

    .manul-a1-hero__bottom {
        position: relative;
        margin-top: 28px;
        display: block;
    }

    .manul-a1-hero__features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .manul-a1-feature-card {
        min-height: 102px;
        padding: 20px 18px;
    }

    .manul-a1-feature-card--wide {
        order: 1;
    }

    .manul-a1-feature-card--gear {
        order: 2;
        width: 100%;
        min-height: 102px;
        padding-right: 148px;
    }

    .manul-a1-buy-card {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 132px;
        min-width: 132px;
        height: 102px;
        min-height: 102px;
        margin: 0;
        padding: 16px 14px 14px;
        border-radius: 14px;
    }

    .manul-a1-buy-card__text {
        font-size: 12px;
        line-height: 1.2;
    }
}

/* small mobile */
@media (max-width: 389px) {
    .manul-a1-hero__content {
        padding: calc(clamp(420px, 116vw, 460px) + var(--manul-admin-offset)) 16px 16px;
    }

    .manul-a1-hero__title {
        font-size: 32px;
    }

    .manul-a1-hero__desc {
        font-size: 17px;
    }

    .manul-a1-spec__value {
        font-size: 36px;
    }

    .manul-a1-spec__label {
        font-size: 14px;
    }

    .manul-a1-feature-card--gear {
        padding-right: 132px;
    }

    .manul-a1-buy-card {
        width: 118px;
        min-width: 118px;
    }
}

/* =========================
   A1 BENEFITS / DRUM BLOCK
========================= */
.manul-a1-benefits {
    position: relative;
    overflow: clip;
    color: #fafafa;
    background-color: #18211e;
    background-image: var(--a1-benefits-bg-desktop);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.manul-a1-benefits.is-expanded-state {
    background-image: var(--a1-benefits-bg-desktop-expanded);
}

.manul-a1-benefits__inner {
    position: sticky;
    top: var(--manul-admin-offset);
    min-height: calc(100vh - var(--manul-admin-offset));
    padding: 160px 180px;
    display: flex;
    align-items: flex-start;
}

.manul-a1-benefits__grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(340px, 0.88fr) minmax(560px, 1fr);
    column-gap: 74px;
    align-items: start;
}

.manul-a1-benefits__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
}

.manul-a1-benefits__title {
    margin: 0;
    color: #fafafa;
    font-weight: 400;
    font-size: 64px;
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.manul-a1-benefits__title-desktop {
    display: block;
}

.manul-a1-benefits__title-mobile {
    display: none;
}

.manul-a1-benefits__subtitle {
    margin: 18px 0 0;
    color: rgba(250, 250, 250, 0.92);
    font-weight: 200;
    font-size: 24px;
    line-height: 1.14;
}

.manul-a1-benefits__right {
    min-width: 0;
}

.manul-a1-benefits__viewport {
    position: relative;
    height: clamp(520px, calc(100vh - 360px), 820px);
    overflow: hidden;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.55) 10%,
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0.55) 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.55) 10%,
        rgba(0, 0, 0, 1) 20%,
        rgba(0, 0, 0, 1) 80%,
        rgba(0, 0, 0, 0.55) 90%,
        transparent 100%
    );
}

.manul-a1-benefits__track {
    display: flex;
    flex-direction: column;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.manul-a1-benefit {
    --a1-benefit-title-opacity: 0.28;
    --a1-benefit-text-opacity: 0.22;
    --a1-benefit-button-opacity: 0.56;
    --a1-benefit-scale: 0.985;
    position: relative;
}

.manul-a1-benefit::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(250, 250, 250, 0.10);
}

.manul-a1-benefit.is-active {
    --a1-benefit-title-opacity: 1;
    --a1-benefit-text-opacity: 1;
    --a1-benefit-button-opacity: 1;
    --a1-benefit-scale: 1;
}

.manul-a1-benefit__top {
    padding: 22px 0 26px;
    transform: scale(var(--a1-benefit-scale));
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.manul-a1-benefit__title {
    margin: 0;
    color: rgba(250, 250, 250, var(--a1-benefit-title-opacity));
    font-weight: 400;
    font-size: clamp(38px, 2.9vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    transition: color 0.28s ease;
}

.manul-a1-benefit__text {
    margin: 14px 0 0;
    color: rgba(250, 250, 250, var(--a1-benefit-text-opacity));
    font-weight: 200;
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: 0;
    transition: color 0.28s ease;
}

.manul-a1-benefit__toggle {
    margin-top: 22px;
    padding: 0 14px;
    min-height: 34px;
    border: 1px solid rgba(192, 234, 108, 0.9);
    border-radius: 10px;
    background: transparent;
    color: #c0ea6c;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: inherit;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    opacity: var(--a1-benefit-button-opacity);
    transition: opacity 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.manul-a1-benefit__toggle:hover {
    background: rgba(192, 234, 108, 0.08);
}

.manul-a1-benefit__toggle-text--less {
    display: none;
}

.manul-a1-benefit.is-expanded .manul-a1-benefit__toggle-text--more {
    display: none;
}

.manul-a1-benefit.is-expanded .manul-a1-benefit__toggle-text--less {
    display: inline;
}

.manul-a1-benefit__toggle-arrow {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.28s ease;
}

.manul-a1-benefit.is-expanded .manul-a1-benefit__toggle-arrow {
    transform: rotate(-135deg) translateY(-1px);
}

.manul-a1-benefit__details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.42s ease, opacity 0.28s ease, margin-top 0.42s ease;
    margin-top: 0;
}

.manul-a1-benefit.is-expanded .manul-a1-benefit__details {
    max-height: 900px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 2px;
    padding-bottom: 28px;
}

.manul-a1-benefit:not(.is-active).is-expanded .manul-a1-benefit__details {
    opacity: 0.7;
}

.manul-a1-benefit__details-text,
.manul-a1-benefit__note {
    margin: 0;
    color: rgba(250, 250, 250, 0.92);
    font-weight: 200;
    font-size: 18px;
    line-height: 1.18;
}

.manul-a1-benefit__details-text + .manul-a1-benefit__cards,
.manul-a1-benefit__details-text + .manul-a1-benefit__label {
    margin-top: 16px;
}

.manul-a1-benefit__cards {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.manul-a1-benefit__cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.manul-a1-benefit__cards--split {
    grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
}

.manul-a1-benefit__card {
    min-height: 104px;
    padding: 18px 18px 16px;
    border-radius: 10px;
    font-weight: 200;
    font-size: 17px;
    line-height: 1.14;
    letter-spacing: 0;
}

.manul-a1-benefit__card strong {
    font-weight: 400;
}

.manul-a1-benefit__card--dark {
    background: rgba(86, 105, 99, 0.82);
    color: #fafafa;
}

.manul-a1-benefit__card--accent {
    background: #c0ea6c;
    color: #202524;
}

.manul-a1-benefit__card--small {
    max-width: 100%;
}

.manul-a1-benefit__note {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(250, 250, 250, 0.72);
}

.manul-a1-benefit__label {
    margin-top: 8px;
    color: rgba(250, 250, 250, 0.96);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.16;
}

.manul-a1-benefit__label--flow {
    margin-top: 18px;
}

.manul-a1-benefit__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.manul-a1-benefit__chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(250, 250, 250, 0.96);
    color: #566963;
    font-weight: 200;
    font-size: 15px;
    line-height: 1.1;
}

.manul-a1-benefit__flow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
    color: rgba(250, 250, 250, 0.86);
    font-weight: 200;
    font-size: 16px;
    line-height: 1.12;
}

.manul-a1-benefit__flow-step {
    white-space: nowrap;
}

.manul-a1-benefit__flow-arrow {
    color: rgba(250, 250, 250, 0.54);
    font-weight: 200;
}

.manul-a1-benefit__result {
    margin-top: 18px;
    padding: 18px 18px 16px;
    border-radius: 10px;
    background: #c0ea6c;
    color: #202524;
    font-weight: 200;
    font-size: 18px;
    line-height: 1.16;
}

.manul-a1-benefit__result strong {
    font-weight: 400;
}

@media (max-width: 1799px) {
    .manul-a1-benefits__inner {
        padding: 160px 120px;
    }

    .manul-a1-benefits__grid {
        grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1fr);
        column-gap: 54px;
    }

    .manul-a1-benefits__title {
        font-size: 58px;
    }

    .manul-a1-benefits__subtitle {
        font-size: 22px;
    }

    .manul-a1-benefit__title {
        font-size: clamp(34px, 2.8vw, 48px);
    }

    .manul-a1-benefit__text {
        font-size: 22px;
    }
}

@media (max-width: 1599px) {
    .manul-a1-benefits__inner {
        padding: 140px 72px;
    }

    .manul-a1-benefits__grid {
        grid-template-columns: minmax(270px, 0.76fr) minmax(500px, 1fr);
        column-gap: 42px;
    }

    .manul-a1-benefits__title {
        font-size: 50px;
    }

    .manul-a1-benefits__subtitle {
        margin-top: 14px;
        font-size: 20px;
    }

    .manul-a1-benefits__viewport {
        height: clamp(480px, calc(100vh - 310px), 760px);
    }

    .manul-a1-benefit__text {
        font-size: 20px;
    }

    .manul-a1-benefit__card,
    .manul-a1-benefit__result,
    .manul-a1-benefit__details-text,
    .manul-a1-benefit__label {
        font-size: 16px;
    }
}

@media (max-width: 1279px) {
    .manul-a1-benefits__inner {
        padding: 120px 40px;
    }

    .manul-a1-benefits__grid {
        grid-template-columns: minmax(240px, 0.72fr) minmax(460px, 1fr);
        column-gap: 30px;
    }

    .manul-a1-benefits__title {
        font-size: 42px;
    }

    .manul-a1-benefit__title {
        font-size: 34px;
    }

    .manul-a1-benefit__text {
        font-size: 18px;
    }

    .manul-a1-benefits__viewport {
        height: clamp(430px, calc(100vh - 270px), 680px);
    }
}

@media (max-width: 1024px) {
    .manul-a1-benefits {
        background-image: var(--a1-benefits-bg-mobile);
        background-position: center top;
        background-size: cover;
    }

    .manul-a1-benefits.is-expanded-state {
        background-image: var(--a1-benefits-bg-mobile-expanded);
    }

    .manul-a1-benefits__inner {
        position: relative;
        top: auto;
        min-height: auto;
        padding: 64px 16px 56px;
        display: block;
    }

    .manul-a1-benefits__grid {
        display: block;
    }

    .manul-a1-benefits__left {
        margin-bottom: 22px;
        padding-top: 0;
    }

    .manul-a1-benefits__title {
        font-size: clamp(28px, 8.5vw, 40px);
        line-height: 1;
    }

    .manul-a1-benefits__title-desktop {
        display: none;
    }

    .manul-a1-benefits__title-mobile {
        display: block;
        white-space: nowrap;
    }

    .manul-a1-benefits__subtitle {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.16;
    }

    .manul-a1-benefits__viewport {
        height: auto;
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .manul-a1-benefits__track {
        transform: none !important;
    }

    .manul-a1-benefit {
        --a1-benefit-title-opacity: 1;
        --a1-benefit-text-opacity: 1;
        --a1-benefit-button-opacity: 1;
        --a1-benefit-scale: 1;
    }

    .manul-a1-benefit__top {
        padding: 22px 0 20px;
    }

    .manul-a1-benefit__title {
        font-size: 27px;
        line-height: 1.02;
    }

    .manul-a1-benefit__text {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.15;
    }

    .manul-a1-benefit__toggle {
        margin-top: 16px;
        min-height: 32px;
        padding: 0 12px;
        font-size: 10px;
        border-radius: 9px;
    }

    .manul-a1-benefit.is-expanded .manul-a1-benefit__details {
        max-height: 1400px;
        padding-bottom: 22px;
    }

    .manul-a1-benefit__details-text,
    .manul-a1-benefit__label,
    .manul-a1-benefit__result,
    .manul-a1-benefit__card {
        font-size: 14px;
        line-height: 1.16;
    }

    .manul-a1-benefit__cards--two,
    .manul-a1-benefit__cards--split {
        grid-template-columns: 1fr;
    }

    .manul-a1-benefit__card {
        min-height: auto;
        padding: 16px 14px;
        border-radius: 9px;
    }

    .manul-a1-benefit__chips {
        gap: 6px;
    }

    .manul-a1-benefit__chip {
        min-height: 34px;
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 7px;
    }

    .manul-a1-benefit__flow,
    .manul-a1-benefit__flow--install {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        font-size: 14px;
    }

    .manul-a1-benefit__flow-step {
        white-space: normal;
    }

    .manul-a1-benefit__flow-arrow {
        font-size: 26px;
        line-height: 1;
    }

    .manul-a1-benefit__note {
        font-size: 11px;
        line-height: 1.2;
    }
}

@media (max-width: 389px) {
    .manul-a1-benefits__title {
        font-size: 26px;
    }

    .manul-a1-benefits__subtitle {
        font-size: 13px;
    }

    .manul-a1-benefit__title {
        font-size: 24px;
    }
}

.manul-a1-benefit__top > .manul-a1-benefit__toggle {
    margin-top: 22px;
}

.manul-a1-benefit__details + .manul-a1-benefit__toggle {
    margin-top: 0;
    margin-bottom: 26px;
}

@media (max-width: 1024px) {
    .manul-a1-benefit__details + .manul-a1-benefit__toggle {
        margin-bottom: 20px;
    }
}

/* =========================
   A1 STEPS BLOCK
========================= */
.manul-a1-steps {
    background: #f3f3f3;
    color: #202524;
    overflow: hidden;
}

.manul-a1-steps__shell {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 160px 40px;
    box-sizing: border-box;
}

.manul-a1-steps__grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 888px) minmax(0, 888px);
    column-gap: 64px;
    align-items: start;
    justify-content: center;
}

.manul-a1-steps__left,
.manul-a1-steps__right {
    width: 888px;
    max-width: 100%;
    min-width: 0;
}

.manul-a1-steps__left {
    min-height: 789px;
    display: flex;
    flex-direction: column;
}

.manul-a1-steps__head {
    width: 888px;
    max-width: 100%;
    min-height: 105px;
    padding-left: 140px;
    margin: 0 0 48px;
    box-sizing: border-box;
}

.manul-a1-steps__title {
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #202524;
}

.manul-a1-steps__subtitle {
    margin: 12px 0 0;
    font-family: "Geologica", sans-serif;
    font-weight: 200;
    font-size: 24px;
    line-height: 1.12;
    color: rgba(32, 37, 36, 0.56);
}

.manul-a1-steps__list {
    width: 888px;
    max-width: 100%;
    border-bottom: 1px solid #c0c0c0;
    box-sizing: border-box;
}

.manul-a1-step {
    display: grid;
    grid-template-columns: 76px 310px 411px;
    column-gap: 64px;
    row-gap: 0;
    align-items: start;
    width: 888px;
    max-width: 100%;
    border-top: 1px solid #c0c0c0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    will-change: opacity, transform;
}

.manul-a1-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.manul-a1-step:nth-child(1) {
    min-height: 118px;
    padding: 20px 0;
}

.manul-a1-step:nth-child(2) {
    min-height: 147px;
    padding: 24px 0;
}

.manul-a1-step:nth-child(3) {
    min-height: 147px;
    padding: 24px 0;
}

.manul-a1-step:nth-child(4) {
    min-height: 118px;
    padding: 20px 0;
}

.manul-a1-step__num {
    width: 40px;
    height: 40px;
    border: 1px solid #c0c0c0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: rgba(32, 37, 36, 0.56);
    background: transparent;
    box-sizing: border-box;
    margin-top: 0;
}

.manul-a1-step__body {
    display: contents;
}

.manul-a1-step__title {
    width: 310px;
    max-width: 100%;
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #202524;
}

.manul-a1-step__text {
    width: 411px;
    max-width: 100%;
    margin: 0;
    font-family: "Geologica", sans-serif;
    font-weight: 200;
    font-size: 24px;
    line-height: 1.12;
    color: #202524;
}

.manul-a1-steps__right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.manul-a1-steps__media {
    width: 888px;
    max-width: 100%;
    height: 789px;
    border-radius: 13px;
    overflow: hidden;
    background: #eaedf2;
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
    will-change: opacity, transform;
}

.manul-a1-steps__media.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.manul-a1-steps__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
}

/* ===== 1600–1919 ===== */
@media (max-width: 1919px) {
    .manul-a1-steps__shell {
        padding: 140px 72px;
    }

    .manul-a1-steps__grid {
        grid-template-columns: minmax(0, 1fr) minmax(520px, 760px);
        column-gap: 42px;
    }

    .manul-a1-steps__left,
    .manul-a1-steps__right,
    .manul-a1-steps__head,
    .manul-a1-steps__list,
    .manul-a1-step,
    .manul-a1-steps__media {
        width: 100%;
    }

    .manul-a1-steps__left {
        min-height: auto;
    }

    .manul-a1-steps__head {
        padding-left: 92px;
        min-height: auto;
        margin-bottom: 40px;
    }

    .manul-a1-step {
        grid-template-columns: 52px minmax(200px, 250px) minmax(220px, 1fr);
        column-gap: 32px;
    }

    .manul-a1-step__title,
    .manul-a1-step__text {
        width: auto;
    }

    .manul-a1-steps__title {
        font-size: 56px;
    }

    .manul-a1-steps__subtitle {
        font-size: 22px;
    }

    .manul-a1-step__num {
        width: 36px;
        height: 36px;
        font-size: 11px;
        border-radius: 9px;
    }

    .manul-a1-step__title {
        font-size: 34px;
    }

    .manul-a1-step__text {
        font-size: 21px;
        line-height: 1.16;
    }

    .manul-a1-steps__media {
        height: 680px;
    }
}

/* ===== 1280–1599 ===== */
@media (max-width: 1599px) {
    .manul-a1-steps__shell {
        padding: 120px 40px;
    }

    .manul-a1-steps__grid {
        grid-template-columns: minmax(0, 1fr) 560px;
        column-gap: 32px;
    }

    .manul-a1-steps__head {
        padding-left: 72px;
        margin-bottom: 32px;
    }

    .manul-a1-step {
        grid-template-columns: 44px 190px minmax(0, 1fr);
        column-gap: 24px;
    }

    .manul-a1-steps__title {
        font-size: 48px;
    }

    .manul-a1-steps__subtitle {
        font-size: 20px;
    }

    .manul-a1-step__num {
        width: 32px;
        height: 32px;
        font-size: 10px;
        border-radius: 8px;
    }

    .manul-a1-step__title {
        font-size: 30px;
    }

    .manul-a1-step__text {
        font-size: 18px;
        line-height: 1.16;
    }

    .manul-a1-steps__media {
        height: 560px;
    }
}

/* ===== 1024–1279 ===== */
@media (max-width: 1279px) {
    .manul-a1-steps__shell {
        padding: 96px 24px;
    }

    .manul-a1-steps__grid {
        grid-template-columns: minmax(0, 1fr) 460px;
        column-gap: 24px;
    }

    .manul-a1-steps__head {
        padding-left: 56px;
        margin-bottom: 24px;
    }

    .manul-a1-step {
        grid-template-columns: 36px 160px minmax(0, 1fr);
        column-gap: 20px;
        min-height: auto !important;
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .manul-a1-steps__title {
        font-size: 40px;
    }

    .manul-a1-steps__subtitle {
        font-size: 18px;
    }

    .manul-a1-step__num {
        width: 28px;
        height: 28px;
        font-size: 9px;
        border-radius: 7px;
    }

    .manul-a1-step__title {
        font-size: 24px;
    }

    .manul-a1-step__text {
        font-size: 16px;
        line-height: 1.16;
    }

    .manul-a1-steps__media {
        height: 460px;
    }
}

/* ===== mobile / tablet ===== */
@media (max-width: 1023px) {
    .manul-a1-steps__shell {
        padding: 60px 12px;
    }

    .manul-a1-steps__grid {
        width: 100%;
        display: block;
    }

    .manul-a1-steps__left,
    .manul-a1-steps__right,
    .manul-a1-steps__head,
    .manul-a1-steps__list,
    .manul-a1-step,
    .manul-a1-steps__media {
        width: 100%;
        max-width: 100%;
    }

    .manul-a1-steps__left {
        min-height: auto;
        display: block;
    }

    .manul-a1-steps__head {
        min-height: auto;
        padding-left: 0;
        margin: 0 0 24px;
    }

    .manul-a1-steps__title {
        font-size: 26px;
        line-height: 0.98;
        letter-spacing: -0.02em;
    }

    .manul-a1-steps__subtitle {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.12;
    }

    .manul-a1-steps__list {
        border-bottom: 1px solid #c0c0c0;
    }

    .manul-a1-step {
        display: block;
        min-height: 108px !important;
        padding: 0 0 16px !important;
        margin: 0 0 30px;
        border-top: 0;
        border-bottom: 1px solid #c0c0c0;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .manul-a1-step:last-child {
        margin-bottom: 0;
    }

    .manul-a1-step__num {
        width: 24px;
        height: 24px;
        margin: 0 0 16px;
        border-radius: 4.8px;
        font-size: 7.2px;
    }

    .manul-a1-step__body {
        display: block;
    }

    .manul-a1-step__title {
        width: 100%;
        font-size: 18px;
        line-height: 1.02;
        letter-spacing: -0.01em;
    }

    .manul-a1-step__text {
        width: 100%;
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.18;
    }

    .manul-a1-steps__right {
        margin-top: 24px;
    }

    .manul-a1-steps__media,
    .manul-a1-steps__media.is-visible {
        height: auto;
        aspect-ratio: 1 / 1;
        opacity: 1;
        transform: none;
    }

    .manul-a1-steps__media img {
        object-fit: cover;
        object-position: center center;
        transform: scale(1.02);
    }
}

@media (max-width: 389px) {
    .manul-a1-steps__title {
        font-size: 25px;
    }
}