.order-features {
    --features-blue: #1557d6;
    --features-navy: #101a35;
    --features-mint: #53dbad;
    position: relative;
    overflow: hidden;
    padding: 66px 0 76px;
    color: var(--features-navy);
    background: #fff;
}

.order-features,
.order-features * {
    box-sizing: border-box;
}

.order-features__inner {
    width: min(1520px, calc(100% - 64px));
    margin: 0 auto;
}

.order-features__section-no {
    display: table;
    margin: 0 auto;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--features-mint);
    color: var(--features-blue);
    font-size: 20px;
    font-weight: 850;
    line-height: 1;
}

.order-features h2 {
    margin: 25px 0 36px;
    color: var(--features-navy);
    font-size: clamp(46px, 3.7vw, 62px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -4px;
    text-align: center;
    word-break: keep-all;
}

.order-features h2 strong {
    color: var(--features-blue);
    font-weight: 850;
}

.order-features__showcase {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 440px minmax(300px, 1fr);
    align-items: center;
    gap: 34px;
}

.order-features__list {
    display: grid;
    gap: 66px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-features__list li {
    position: relative;
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 25px;
    min-width: 0;
}

.order-features__list li::after {
    position: absolute;
    top: 50%;
    width: 76px;
    height: 1px;
    background: #548bf0;
    content: "";
}

.order-features__list li::before {
    position: absolute;
    z-index: 1;
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--features-mint);
    box-shadow: 0 0 0 1px #8bb0f4;
    content: "";
}

.order-features__list--left li::after {
    right: -58px;
}

.order-features__list--left li::before {
    right: -65px;
}

.order-features__list--right li {
    grid-template-columns: 1fr 112px;
}

.order-features__list--right .order-features__icon {
    grid-column: 2;
    grid-row: 1;
}

.order-features__list--right .order-features__copy {
    grid-column: 1;
    grid-row: 1;
}

.order-features__list--right li::after {
    left: -58px;
}

.order-features__list--right li::before {
    left: -65px;
}

.order-features__icon {
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
    border: 3px solid #e1eaff;
    border-radius: 50%;
    color: var(--features-blue);
    background: #fff;
}

.order-features__icon svg {
    width: 62px;
    height: 62px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.order-features__icon .accent {
    stroke: var(--features-mint);
}

.order-features__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 11px;
}

.order-features__copy strong {
    color: var(--features-blue);
    font-size: 24px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -1px;
    word-break: keep-all;
}

.order-features__copy em {
    max-width: 265px;
    color: #536078;
    font-size: 16px;
    font-style: normal;
    line-height: 1.55;
    letter-spacing: -.4px;
    word-break: keep-all;
}

.order-features__list--right .order-features__copy {
    align-items: flex-end;
    text-align: right;
}

.order-features__phone {
    position: relative;
    z-index: 2;
    width: 410px;
    margin: 0 auto;
}

.order-features__phone-shell {
    position: relative;
    overflow: hidden;
    padding: 14px 16px 18px;
    border: 7px solid #131722;
    border-radius: 48px 48px 28px 28px;
    background: #f8faff;
    box-shadow: 0 24px 50px rgba(27, 65, 132, .13);
}

.order-features__phone-shell::before {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 50%;
    width: 112px;
    height: 28px;
    border-radius: 20px;
    background: #080a0f;
    content: "";
    transform: translateX(-50%);
}

.order-features__phone-top {
    display: flex;
    height: 35px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    color: #10131b;
    font-size: 17px;
    font-weight: 800;
}

.order-features__phone-top i {
    width: 70px;
}

.order-features__app-head {
    display: grid;
    height: 48px;
    grid-template-columns: 60px 1fr 70px;
    align-items: center;
    border-bottom: 1px solid #dce4f1;
}

.order-features__app-head > button {
    display: grid;
    width: 32px;
    gap: 4px;
    padding: 5px;
    border: 0;
    background: transparent;
}

.order-features__app-head > button span {
    height: 2px;
    background: #172238;
}

.order-features__app-head > strong {
    justify-self: center;
    font-size: 16px;
}

.order-features__app-head > span {
    justify-self: end;
    padding: 6px 8px;
    border: 1px solid #d8e1ee;
    border-radius: 8px;
    background: #fff;
    font-size: 17px;
}

.order-features__scanner {
    margin-top: 11px;
    padding: 13px 14px 12px;
    border: 1px solid #bcd1fa;
    border-radius: 13px;
    background: #eff5ff;
}

.order-features__scanner > strong {
    font-size: 13px;
}

.order-features__scanner > p {
    margin: 4px 0 8px;
    color: #6d778b;
    font-size: 15px;
}

.order-features__scan-box {
    position: relative;
    width: 175px;
    height: 63px;
    margin: 0 auto;
}

.order-features__scan-box::before,
.order-features__scan-box::after,
.order-features__scan-box span::before,
.order-features__scan-box span::after {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: #1761e8;
    border-style: solid;
    content: "";
}

.order-features__scan-box::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.order-features__scan-box::after { top: 0; right: 0; border-width: 2px 2px 0 0; }
.order-features__scan-box span::before { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.order-features__scan-box span::after { right: 0; bottom: 0; border-width: 0 2px 2px 0; }

.order-features__scan-box span {
    position: absolute;
    inset: 13px 23px;
    background: repeating-linear-gradient(90deg, #7f92b4 0 2px, transparent 2px 5px, #7f92b4 5px 7px, transparent 7px 11px);
}

.order-features__scan-box i {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 4px;
    left: 4px;
    height: 2px;
    background: #1761e8;
}

.order-features__product {
    display: grid;
    min-height: 92px;
    grid-template-columns: 65px 1fr 28px;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 9px;
    border: 1px solid #d9e1ee;
    border-radius: 12px;
    background: #fff;
}

.order-features__product-image {
    display: grid;
    height: 70px;
    place-items: center;
    border-radius: 7px;
    background: #fff4e8;
}

.order-features__product-image svg {
    width: 48px;
    height: 59px;
    fill: none;
    stroke: #aa7546;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.order-features__product-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.order-features__product-copy strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-features__product-copy em,
.order-features__product-copy small {
    color: #6e788b;
    font-size: 9px;
    font-style: normal;
}

.order-features__product > button {
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: 7px;
    color: #3a475e;
    background: #edf1f7;
    font-size: 18px;
}

.order-features__controls {
    margin: 10px 0 0;
}

.order-features__controls > div {
    display: grid;
    min-height: 54px;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #d9e1ee;
    border-bottom: 0;
    background: #fff;
}

.order-features__controls > div:first-child {
    border-radius: 12px 12px 0 0;
}

.order-features__controls > div:last-child {
    border-bottom: 1px solid #d9e1ee;
    border-radius: 0 0 12px 12px;
}

.order-features__controls dt {
    font-size: 12px;
    font-weight: 800;
}

.order-features__controls dt small {
    margin-left: 6px;
    color: #8a93a3;
    font-size: 8px;
    font-weight: 500;
}

.order-features__controls dd {
    margin: 0;
    color: var(--features-blue);
    font-size: 15px;
    font-weight: 850;
}

.order-features__stepper {
    display: grid;
    grid-template-columns: 32px 48px 32px;
    overflow: hidden;
    border: 1px solid #3977ea;
    border-radius: 8px;
}

.order-features__stepper button,
.order-features__stepper span {
    display: grid;
    height: 30px;
    place-items: center;
    border: 0;
    color: #14213a;
    background: #fff;
    font-size: 17px;
}

.order-features__stepper button {
    color: var(--features-blue);
    font-size: 15px;
}

.order-features__basket {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #d9e1ee;
    border-radius: 12px;
    background: #fff;
    font-size: 17px;
}

.order-features__basket p {
    display: flex;
    grid-column: 1 / 3;
    justify-content: space-between;
    margin: 0;
    color: #536078;
}

.order-features__basket b {
    color: var(--features-blue);
}

@media (max-width: 1200px) {
    .order-features__showcase {
        grid-template-columns: minmax(250px, 1fr) 370px minmax(250px, 1fr);
        gap: 24px;
    }

    .order-features__phone {
        width: 360px;
    }

    .order-features__list li,
    .order-features__list--right li {
        grid-template-columns: 82px 1fr;
        gap: 15px;
    }

    .order-features__list--right li {
        grid-template-columns: 1fr 82px;
    }

    .order-features__list--right .order-features__icon {
        grid-column: 2;
    }

    .order-features__list--right .order-features__copy {
        grid-column: 1;
    }

    .order-features__icon {
        width: 82px;
        height: 82px;
    }

    .order-features__icon svg {
        width: 46px;
        height: 46px;
    }

    .order-features__copy strong {
        font-size: 20px;
    }

    .order-features__copy em {
        font-size: 14px;
    }
}

@media (max-width: 860px) {
    .order-features {
        padding: 70px 0 78px;
    }

    .order-features__inner {
        width: calc(100% - 36px);
    }

    .order-features__section-no {
        font-size: 16px;
    }

    .order-features h2 {
        margin: 25px 0 38px;
        font-size: clamp(34px, 9.4vw, 42px);
        letter-spacing: -2.4px;
    }

    .order-features__showcase {
        display: flex;
        flex-direction: column;
        gap: 38px;
    }

    .order-features__phone {
        order: 1;
        width: min(370px, 100%);
    }

    .order-features__list {
        width: 100%;
        gap: 0;
    }

    .order-features__list--left {
        order: 2;
    }

    .order-features__list--right {
        order: 3;
    }

    .order-features__list li,
    .order-features__list--right li {
        grid-template-columns: 66px 1fr;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid #dce4f2;
    }

    .order-features__list--right .order-features__icon,
    .order-features__list--right .order-features__copy {
        grid-column: auto;
        grid-row: auto;
    }

    .order-features__list--right .order-features__copy {
        align-items: flex-start;
        text-align: left;
    }

    .order-features__list li::before,
    .order-features__list li::after {
        display: none;
    }

    .order-features__icon {
        width: 62px;
        height: 62px;
        border-width: 2px;
    }

    .order-features__icon svg {
        width: 37px;
        height: 37px;
    }

    .order-features__copy {
        gap: 5px;
    }

    .order-features__copy strong {
        font-size: 17px;
    }

    .order-features__copy em {
        max-width: none;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-features * {
        scroll-behavior: auto !important;
    }
}
