.app-walkthrough {
    max-width: 1380px;
    margin: 0 auto 110px;
    padding: 0 22px
}

.walkthrough-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 38px
}

.walkthrough-heading>span {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    font-weight: 850;
    color: #43832b
}

.walkthrough-heading h2 {
    font-size: clamp(3rem, 7vw, 6.8rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: -.06em;
}

.walkthrough-heading p {
    font-size: 18px;
    color: #555
}

.walkthrough-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px
}

.walkthrough-tabs button {
    border: 1px solid #d8d8d2;
    border-radius: 16px;
    background: #f7f5ef;
    padding: 18px 20px;
    text-align: left;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease
}

.walkthrough-tabs button span {
    display: block;
    font-size: 11px;
    opacity: .55;
    margin-bottom: 5px
}

.walkthrough-tabs button:hover,
.walkthrough-tabs button:focus-visible {
    transform: translateY(-2px);
    border-color: #111
}

.walkthrough-tabs button.active {
    color: #fff;
    border-color: transparent
}

.walkthrough-tabs button.active.orange {
    background: var(--orange)
}

.walkthrough-tabs button.active.green {
    background: #4cae36
}

.walkthrough-tabs button.active.blue {
    background: var(--blue)
}

.walkthrough-tabs button.active.purple {
    background: var(--purple)
}

.walkthrough-stage {
    min-height: 590px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    position: relative
}

.walkthrough-stage.orange {
    background: #fff1e3
}

.walkthrough-stage.green {
    background: #eaf8e4
}

.walkthrough-stage.blue {
    background: #e8f0ff
}

.walkthrough-stage.purple {
    background: #f0e8fb
}

.walkthrough-copy {
    padding: 70px 8%;
    align-self: center
}

.walkthrough-count {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em
}

.walkthrough-copy h3 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: .94;
    letter-spacing: -.055em;
    max-width: 670px;
    margin: 14px 0 22px
}

.walkthrough-copy>p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 630px;
    color: #383838
}

.walkthrough-copy ol {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    counter-reset: guide
}

.walkthrough-copy li {
    counter-increment: guide;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .14);
    font-weight: 720
}

.walkthrough-copy li:before {
    content: counter(guide);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #000;
    color: #fff;
    font-size: 12px;
    flex: 0 0 auto
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-weight: 780
}

.walkthrough-device {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 590px
}

.walkthrough-device:before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .65)
}

.walkthrough-phone {
    position: relative;
    width: 245px;
    height: 520px;
    box-shadow: 0 30px 65px rgba(0, 0, 0, .28);
    transform: rotate(4deg)
}

.tap-hint {
    position: absolute;
    right: 8%;
    bottom: 6%;
    font-size: 11px;
    font-weight: 800;
    opacity: .58
}

@media(max-width:900px) {
    .app-walkthrough {
        margin-bottom: 75px;
        padding: 0 16px
    }

    .walkthrough-tabs {
        grid-template-columns: 1fr 1fr
    }

    .walkthrough-stage {
        grid-template-columns: 1fr
    }

    .walkthrough-copy {
        padding: 48px 28px 18px
    }

    .walkthrough-device {
        min-height: 550px
    }

    .walkthrough-device:before {
        width: 350px;
        height: 350px
    }

    .tap-hint {
        right: auto;
        bottom: 18px
    }

    .walkthrough-phone {
        width: 220px;
        height: 470px
    }
}

@media(max-width:520px) {
    .walkthrough-heading h2 {
        font-size: 51px
    }

    .walkthrough-tabs button {
        padding: 15px 14px
    }

    .walkthrough-copy h3 {
        font-size: 43px
    }

    .walkthrough-copy>p {
        font-size: 16px
    }

    .walkthrough-device {
        min-height: 480px
    }

    .walkthrough-device:before {
        width: 290px;
        height: 290px
    }

    .walkthrough-phone {
        width: 190px;
        height: 405px
    }
}