:root {
    --orange: #fc5810;
    --dark-orange: #e63d20;
    --black: #121111;
    --gray: #f5f5f5;
    --muted: rgba(18, 17, 17, 0.7);
    --white: #ffffff;
    --container: 1240px;
    --radius: 15px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--black);
    font-family: Hauora, "Wix Madefor Display", Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

.section {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.header__inner {
    width: min(var(--container), calc(100% - 48px));
    min-height: 132px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: flex-end;
    gap: 18px;
    flex: 0 0 auto;
}

.logo__mark {
    width: 52px;
    height: 52px;
}

.logo__text {
    width: 162px;
    height: 52px;
    padding: 10px 0;
    margin-bottom: 0;
    object-fit: contain;
}

.nav {
    min-width: 494px;
    min-height: 52px;
    padding: 15px 80px;
    border-radius: var(--radius);
    background: var(--gray);
    display: flex;
    justify-content: center;
    gap: 80px;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
}

.nav a {
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--orange);
}

.menu-toggle,
.menu-button {
    display: none;
}

.hero {
    position: relative;
    min-height: 885px;
    padding-top: 30px;
}

.hero__image {
    position: absolute;
    inset: 30px 0 auto 0;
    height: 735px;
}

.hero__picture {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1385px;
    height: 776px;
    mask-image: url("../img/hero-mask.svg");
    mask-mode: alpha;
    mask-position: 145px 41px;
    mask-repeat: no-repeat;
    mask-size: 1240px 735px;
    -webkit-mask-image: url("../img/hero-mask.svg");
    -webkit-mask-position: 145px 41px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 1240px 735px;
}

.hero__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero h1 {
    position: relative;
    z-index: 2;
    width: max-content;
    padding-top: 23px;
    padding-left: 45px;
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero__title-row {
    display: inline;
}

.hero__title-row:first-child::after {
    content: " ";
}

.hero__title-accent,
.hero__badge span,
h2 span,
.benefit h2 span,
.feature-card h3 span {
    color: var(--orange);
}

.hero__badge {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 120px;
    width: 446px;
    min-height: 191px;
    padding: 36px 42px;
    border-radius: 30px;
    background: var(--gray);
    color: var(--black);
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.why {
    padding-top: 0;
}

.why h2,
.services > h2,
.steps > h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.why-card {
    position: relative;
    min-height: 194px;
    grid-column: span 2;
    padding: 100px 30px 30px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--gray);
}

.why-card--wide {
    grid-column: span 3;
}

.why-card--low {
    padding-top: 132px;
}

.why-card h3 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

.why-card img {
    position: absolute;
    top: 8px;
    right: -1px;
    width: 163px;
    height: 116px;
    object-fit: cover;
}

.why-card--wide img {
    right: 0;
}

.delivery {
    margin-top: 120px;
    background: var(--orange);
    overflow: visible;
}

.delivery__inner {
    position: relative;
    width: min(1440px, 100%);
    min-height: 381px;
    margin: 0 auto;
    padding: 50px 100px;
}

.delivery h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}

.delivery h2 span {
    color: var(--white);
}

.delivery__card {
    width: 605px;
    margin-top: 40px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--gray);
}

.delivery__card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

.delivery__card p {
    color: var(--muted);
    line-height: 22px;
}

.delivery__inner > img {
    position: absolute;
    z-index: 2;
    right: 100px;
    bottom: 0;
    width: 549px;
    max-width: 43%;
}

.about {
    position: relative;
    padding-top: 120px;
    --about-title-size: 40px;
    --about-title-line-height: 45px;
    --about-card-title-size: 22px;
    --about-card-title-line-height: 32px;
    --about-card-text-size: 20px;
    --about-card-text-line-height: 22px;
}

.about::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 50%;
    width: 2059px;
    height: 1181px;
    background: url("../img/about-vector.svg") center / 100% 100% no-repeat;
    transform: translateX(-50%);
    pointer-events: none;
}

.about > h2 {
    position: relative;
    z-index: 1;
    margin: 0 auto 60px;
    text-align: center;
    font-size: var(--about-title-size);
    font-weight: 600;
    line-height: var(--about-title-line-height);
}

.cards-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    min-height: 352px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--gray);
    overflow: hidden;
}

.service-card:nth-child(-n + 3) {
    min-height: 384px;
}

.service-card__icon {
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-bottom: 0;
}

.service-card h3 {
    min-height: 96px;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: var(--about-card-title-size);
    font-weight: 600;
    line-height: var(--about-card-title-line-height);
}

.service-card__text {
    color: var(--muted);
    font-size: var(--about-card-text-size);
    line-height: var(--about-card-text-line-height);
}

.service-card hr {
    height: 2px;
    margin: 15px 0;
    border: 0;
    background: var(--white);
}

.benefits {
    margin-top: 120px;
    padding: 100px 0;
    background: var(--gray);
}

.benefits__inner {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.benefit {
    position: relative;
    min-height: 270px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.benefit:first-child {
    min-height: 337px;
}

.benefit:last-child {
    min-height: 315px;
}

.benefit--3 {
    min-height: 199px;
}

.benefit__content {
    position: relative;
    z-index: 2;
    width: 603px;
}

.benefit h2 {
    margin-bottom: 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
    white-space: nowrap;
}

.benefit h2 span {
    color: var(--orange);
}

.benefit h3 {
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

.benefit h3 span {
    color: var(--orange);
}

.benefit p {
    color: var(--muted);
    line-height: 22px;
}

.benefit__media {
    position: absolute;
    inset: 0 0 0 auto;
    width: 607px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--orange), rgba(255, 255, 255, 0));
}

.benefit__media::before {
    content: "";
    position: absolute;
    left: calc(50% + 150.5px);
    top: -73px;
    width: 1140px;
    height: 654px;
    background: url("../img/benefit-vector.svg") center / 100% 100% no-repeat;
    transform: translateX(-50%);
    pointer-events: none;
}

.benefit--3 .benefit__media {
    top: auto;
    bottom: 0;
    height: 199px;
}

.benefit--3 .benefit__media::before {
    top: -13px;
    background-image: url("../img/benefit-vector-bottom.svg");
}

.benefit__media > img:not(.benefit__floating) {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    width: auto;
    max-width: calc(100% - 72px);
    max-height: 100%;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.benefit--1 .benefit__media > img:not(.benefit__floating) {
    width: 422px;
    max-width: none;
}

.benefit--2 .benefit__media > img:not(.benefit__floating) {
    width: 373px;
    max-width: none;
    transform: translate(-50%, -50%) rotate(-4.22deg);
}

.benefit--3 .benefit__media > img:not(.benefit__floating) {
    left: auto;
    right: 43px;
    top: 4px;
    width: 308px;
    max-width: none;
    max-height: none;
    transform: none;
}

.benefit--3 .benefit__floating {
    display: block;
    z-index: 2;
    left: 68px;
    top: 8px;
    width: 227px;
    transform: none;
}

.benefit--4 .benefit__media > img:not(.benefit__floating) {
    top: -28px;
    width: 364px;
    max-width: none;
    max-height: none;
    transform: translateX(-50%);
}

.benefit__floating {
    position: absolute;
    z-index: 2;
    left: 8%;
    top: 25%;
    width: 36%;
    transform: rotate(-10deg);
}

.services {
    padding-top: 120px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    position: relative;
    min-height: 395px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--gray);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -260px -460px auto auto;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 88, 16, 0.2), transparent 62%);
}

.feature-card--image {
    grid-column: 1 / -1;
    min-height: 460px;
}

.feature-card--image::before {
    inset: auto;
    left: calc(50% + 191.5px);
    top: -278px;
    width: 1895px;
    height: 936px;
    border-radius: 0;
    background: url("../img/services-vector-wide.svg") center / 100% 100% no-repeat;
    transform: translateX(-50%);
}

.feature-card__content {
    position: relative;
    z-index: 2;
    width: min(100%, 602px);
}

.feature-card h3 {
    margin-bottom: 30px;
    color: var(--black);
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}

.feature-card h3 span {
    color: var(--orange);
}

.feature-card--image h3 {
    white-space: nowrap;
}

.feature-card--image h3 .feature-card__title-break {
    display: none;
}

.feature-card__lead {
    margin-bottom: 30px;
    line-height: 22px;
}

.feature-card ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 15px;
    list-style: none;
}

.feature-card--2 ul {
    gap: 30px;
}

.feature-card li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-card li img {
    width: 24px;
    height: 27px;
    flex: 0 0 auto;
    transform: rotate(90deg);
}

.feature-card li span {
    display: grid;
    gap: 5px;
}

.feature-card strong {
    color: var(--orange);
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

.feature-card small {
    color: var(--muted);
    font-size: 17px;
    line-height: 22px;
}

.feature-card__image {
    position: absolute;
    right: 93px;
    top: calc(50% + 33px);
    width: 409px;
    height: 394px;
    object-fit: contain;
    transform: translateY(-50%);
}

.feature-card__brand {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 149px;
    height: auto;
}

.steps {
    position: relative;
    padding-top: 120px;
}

.steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: calc(50% - 99.5px);
    top: 59px;
    width: 2059px;
    height: 1222px;
    background: url("../img/steps-vector.svg") center / 100% 100% no-repeat;
    transform: translateX(-50%);
    pointer-events: none;
}

.steps > h2 {
    position: relative;
    z-index: 1;
    text-align: left;
}

.steps__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 605px 575px;
    gap: 60px;
    align-items: start;
}

.steps__list {
    display: grid;
    gap: 15px;
}

.step {
    min-height: 105px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 39px;
}

.step span {
    color: var(--orange);
    flex: 0 0 70px;
    font-size: 40px;
    line-height: 45px;
}

.step p {
    flex: 1;
}

.step__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
}

.steps__media {
    width: 575px;
    height: 465px;
    justify-self: end;
    overflow: hidden;
    background: transparent;
}

.steps__media img {
    width: 575px;
    height: 465px;
    object-fit: contain;
}

.contacts {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contacts__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    height: 428px;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--gray);
    overflow: hidden;
}

.contacts__title {
    flex: 0 0 auto;
    width: 100%;
    color: var(--orange);
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}

.contacts__list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.contacts__list article {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    height: 129px;
    padding: 30px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
}

.contacts__list span {
    flex: 0 0 auto;
    color: var(--orange);
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
}

.contacts__list p {
    width: min-content;
    min-width: 100%;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

.contacts__list a {
    color: inherit;
    text-decoration: none;
}

.contacts__media {
    position: absolute;
    left: 660px;
    top: 48px;
    z-index: 3;
    width: 580px;
    height: 380px;
    overflow: hidden;
    pointer-events: none;
}

.steps__media img,
.steps__media picture,
.contacts__media img,
.contacts__media picture {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step p br {
    display: none;
}

.footer {
    background: var(--black);
    color: var(--white);
}

.footer__inner {
    width: min(var(--container), calc(100% - 48px));
    min-height: 397px;
    margin: 0 auto;
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 446px;
    gap: 60px;
}

.footer__nav {
    display: flex;
    gap: 87px;
}

.footer__nav div {
    display: grid;
    align-content: start;
    gap: 15px;
}

.footer__nav span {
    margin-bottom: 15px;
    color: #b33600;
    font-size: 17px;
    line-height: 22px;
}

.footer__nav a,
.footer__nav p {
    max-width: 373px;
    font-size: 22px;
    font-weight: 600;
    line-height: 27px;
}

.footer__brand .logo {
    margin-bottom: 56px;
}

.footer__brand .logo__mark {
    width: 100px;
    height: 100px;
}

.footer__brand .logo__text {
    width: 310px;
    height: 100px;
    padding: 24px 0 16px;
}

.footer__brand p {
    color: #707070;
    line-height: 22px;
}

@media (max-width: 900px) {
    :root {
        --nav-mobile-font-family: "Inter", "Segoe UI", sans-serif;
        --nav-mobile-font-size: 17px;
        --nav-mobile-font-weight: 300;
        --nav-mobile-line-height: 22px;
    }

    html,
    body {
        overflow-x: clip;
        max-width: 100%;
    }

    body {
        font-size: 15px;
        line-height: 20px;
    }

    main {
        display: flex;
        flex-direction: column;
        gap: 64px;
        overflow-x: clip;
        max-width: 100%;
    }

    main > * {
        min-width: 0;
        max-width: 100%;
    }

    .section {
        width: calc(100% - 48px);
    }

    .header__inner {
        width: calc(100% - 48px);
        min-height: 72px;
        padding: 16px 0;
    }

    .logo {
        gap: 9px;
    }

    .logo__mark {
        width: 24px;
        height: 24px;
    }

    .logo__text {
        width: 75px;
        height: 24px;
        padding: 5px 0;
        margin-bottom: 0;
    }

    .menu-button {
        position: relative;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: var(--gray);
        display: block;
        cursor: pointer;
    }

    .menu-button span,
    .menu-button::before,
    .menu-button::after {
        content: "";
        position: absolute;
        left: 10px;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: var(--black);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-button span {
        top: 19px;
    }

    .menu-button::before {
        top: 13px;
    }

    .menu-button::after {
        top: 25px;
    }

    .menu-toggle:checked + .menu-button span {
        opacity: 0;
    }

    .menu-toggle:checked + .menu-button::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle:checked + .menu-button::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 74px;
        min-width: 0;
        min-height: 0;
        padding: 18px;
        border-radius: 12px;
        display: grid;
        gap: 12px;
        font-family: var(--nav-mobile-font-family);
        font-size: var(--nav-mobile-font-size);
        font-weight: var(--nav-mobile-font-weight);
        line-height: var(--nav-mobile-line-height);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .menu-toggle:checked ~ .nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero {
        min-height: 422px;
        padding-top: 0;
        overflow: hidden;
    }

    .hero__image {
        inset: 0;
        height: 422px;
    }

    .hero__picture {
        left: calc(50% - 34px);
        top: 50%;
        right: auto;
        bottom: auto;
        width: 753px;
        height: 422px;
        transform: translate(-50%, -50%);
        mask-image: url("../img/hero-mask-mobile.svg");
        mask-position: 238px 0;
        mask-size: 345px 422px;
        -webkit-mask-image: url("../img/hero-mask-mobile.svg");
        -webkit-mask-position: 238px 0;
        -webkit-mask-size: 345px 422px;
    }

    .hero h1 {
        position: absolute;
        top: 8px;
        left: 8px;
        width: auto;
        padding: 0;
        font-size: 24px;
        line-height: 29px;
        white-space: normal;
    }

    .hero__title-row {
        display: block;
    }

    .hero__title-row:first-child::after {
        content: none;
    }

    .hero h1 br {
        display: none;
    }

    .hero__badge {
        left: 235px;
        right: auto;
        top: 356px;
        bottom: auto;
        width: auto;
        min-height: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        font-size: 24px;
        font-weight: 600;
        line-height: 29px;
    }

    .why {
        padding-top: 0;
    }

    .why h2,
    .services > h2,
    .steps > h2 {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 29px;
    }

    .why__grid,
    .cards-grid,
    .services__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .why-card,
    .why-card--wide {
        grid-column: auto;
        min-height: 92px;
        padding: 32px 110px 16px 24px;
        border-radius: var(--radius);
    }

    .why-card--low {
        padding-top: 32px;
    }

    .why-card h3 {
        font-size: 17px;
        line-height: 22px;
    }

    .why-card img {
        top: 0;
        right: 0;
        width: 105px;
        height: 92px;
    }

    .delivery {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .delivery__inner {
        width: 100%;
        min-height: 0;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .delivery h2 {
        font-size: 24px;
        line-height: 29px;
    }

    .delivery__card {
        width: 100%;
        margin-top: 0;
        padding: 24px;
        border-radius: var(--radius);
    }

    .delivery__card h3 {
        font-size: 17px;
        line-height: 22px;
    }

    .delivery__card p {
        font-size: 15px;
        line-height: 20px;
    }

    .delivery__inner > img {
        position: relative;
        right: auto;
        bottom: auto;
        width: 332px;
        height: 244px;
        max-width: 100%;
        margin: 0 auto;
        object-fit: contain;
    }

    .about {
        padding-top: 0;
        overflow: hidden;
        --about-title-size: 22px;
        --about-title-line-height: 27px;
        --about-card-title-size: 17px;
        --about-card-title-line-height: 22px;
        --about-card-text-size: 15px;
        --about-card-text-line-height: 20px;
    }

    .about > h2 {
        margin-bottom: 32px;
        text-align: left;
    }

    .cards-grid {
        display: flex;
        gap: 15px;
        margin: 0;
        padding: 0 24px 8px 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .service-card,
    .service-card:nth-child(-n + 3) {
        flex: 0 0 285px;
        scroll-snap-align: start;
        min-height: 298px;
        padding: 16px 24px 24px;
        border-radius: var(--radius);
    }

    .service-card__icon {
        width: 28px;
        height: 28px;
    }

    .service-card h3 {
        min-height: auto;
        margin-bottom: 24px;
    }

    .benefits {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 32px 0;
    }

    .benefits__inner {
        width: calc(100% - 48px);
        gap: 16px;
    }

    .benefit,
    .benefit:first-child,
    .benefit:last-child {
        min-height: 0;
        padding: 0;
        border-radius: var(--radius);
        overflow: hidden;
    }

    .benefit__content {
        width: 100%;
        padding: 24px 24px 0;
    }

    .benefit h2 {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 29px;
        white-space: normal;
    }

    .benefit h3 {
        font-size: 17px;
        line-height: 22px;
    }

    .benefit p {
        font-size: 15px;
        line-height: 20px;
    }

    .benefit__media {
        position: relative;
        inset: auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: calc(100% + 48px);
        max-width: calc(100% + 48px);
        height: 292px;
        margin: 24px -24px 0;
        overflow: hidden;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--orange) 100%);
    }

    .benefit__media::before {
        left: 50%;
        top: -118px;
        width: 1140px;
        height: 654px;
    }

    .benefit--3 .benefit__media {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        height: auto;
        min-height: 292px;
        padding-bottom: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--orange) 100%);
    }

    .benefit--3 .benefit__media::before {
        top: -118px;
    }

    .benefit__media > img:not(.benefit__floating) {
        position: relative;
        z-index: 1;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: calc(100% - 8px);
        object-fit: contain;
        transform: none;
    }

    .benefit--1 .benefit__media > img:not(.benefit__floating),
    .benefit--2 .benefit__media > img:not(.benefit__floating),
    .benefit--4 .benefit__media > img:not(.benefit__floating) {
        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .benefit--2 .benefit__media > img:not(.benefit__floating) {
        transform: none;
    }

    .benefit--3 .benefit__media > img:not(.benefit__floating),
    .benefit--3 .benefit__floating {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: min(100%, 308px);
        max-width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        transform: none;
    }

    .benefit--3 .benefit__floating {
        order: -1;
        z-index: 2;
    }

    .benefit--4 .benefit__media {
        height: 460px;
        min-height: 460px;
        align-items: center;
    }

    .benefit--4 .benefit__media > img:not(.benefit__floating) {
        max-height: 100%;
        object-fit: contain;
    }

    .services {
        padding-top: 0;
    }

    .feature-card,
    .feature-card--image {
        grid-column: auto;
        min-height: 0;
        padding: 24px;
        border-radius: var(--radius);
    }

    .feature-card h3 {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 29px;
    }

    .feature-card__lead,
    .feature-card small {
        font-size: 15px;
        line-height: 20px;
    }

    .feature-card strong {
        font-size: 17px;
        line-height: 22px;
    }

    .feature-card__image {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        margin: 24px auto -24px;
        transform: none;
    }

    .feature-card--image h3 {
        white-space: normal;
        max-width: calc(100% - 108px);
    }

    .feature-card--image h3 .feature-card__title-break {
        display: inline;
    }

    .feature-card__brand {
        width: 96px;
        height: auto;
        right: 24px;
        top: 24px;
    }

    .steps {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
        padding-inline: 24px;
        overflow: hidden;
        overflow-x: clip;
        box-sizing: border-box;
    }

    .steps::before {
        left: calc(50% - 99px);
        top: 20px;
        width: 1273px;
        height: 756px;
        transform: translateX(-50%);
    }

    .steps__inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .steps__list {
        gap: 15px;
        width: 100%;
    }

    .steps__media {
        order: -1;
        width: 100%;
        height: 265px;
        min-height: 265px;
        border-radius: 0;
        overflow: hidden;
    }

    .steps__media img,
    .steps__media picture {
        width: 100%;
        height: 265px;
        margin-top: 0;
        object-fit: contain;
    }

    .step {
        width: 100%;
        min-height: 64px;
        padding: 24px;
        border-radius: var(--radius);
        font-size: 17px;
        line-height: 22px;
        box-sizing: border-box;
    }

    .step:first-child {
        align-items: flex-start;
    }

    .step p br {
        display: inline;
    }

    .step span {
        flex-basis: 42px;
        font-size: 24px;
        line-height: 29px;
    }

    .step__icon {
        width: 24px;
        height: 24px;
    }

    .contacts {
        padding-top: 0;
        padding-bottom: 0;
    }

    .contacts__panel {
        gap: 24px;
        height: 439px;
        padding: 24px 16px;
        border-radius: 20px;
    }

    .contacts__title {
        font-size: 24px;
        line-height: 29px;
    }

    .contacts__list {
        gap: 8px;
    }

    .contacts__list article {
        height: auto;
        min-height: 0;
        padding: 16px;
    }

    .contacts__list span {
        font-size: 15px;
        line-height: 20px;
    }

    .contacts__list p {
        font-size: 17px;
        line-height: 22px;
    }

    .contacts__media {
        left: calc(50% + 87.5px);
        top: 247px;
        width: 342px;
        height: 277px;
        transform: translateX(-50%);
    }

    .contacts__media img,
    .contacts__media picture {
        object-fit: contain;
    }

    .footer__inner {
        width: calc(100% - 48px);
        min-height: 302px;
        padding: 32px 0;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .footer__nav {
        display: grid;
        gap: 24px;
    }

    .footer__nav div {
        gap: 8px;
    }

    .footer__nav span {
        margin-bottom: 0;
        font-size: 12px;
        line-height: 17px;
    }

    .footer__nav a,
    .footer__nav p {
        font-size: 15px;
        line-height: 20px;
    }

    .footer__brand .logo {
        margin-bottom: 24px;
        gap: 13px;
    }

    .footer__brand .logo__mark {
        width: 37px;
        height: 37px;
    }

    .footer__brand .logo__text {
        width: 114px;
        height: 37px;
        padding: 8px 0;
        margin-bottom: 0;
    }

    .footer__brand p {
        font-size: 12px;
        line-height: 17px;
    }
}

@media (min-width: 901px) and (max-width: 1280px) {
    .section,
    .header__inner,
    .benefits__inner,
    .footer__inner {
        width: calc(100% - 64px);
    }

    .delivery__inner {
        padding-inline: 32px;
    }
}
