html {
    scroll-behavior: smooth
}

.why-section {
    background: #e9e6df;
    color: #111;
    padding: 120px 5%
}

.why-container {
    max-width: 1450px;
    margin: auto
}

.why-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 90px
}

.why-number {
    font-size: 11px;
    color: #777
}

.why-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 600;
    white-space: nowrap
}

.why-line {
    width: 100%;
    height: 1px;
    background: #c9c6bf
}

.why-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 10%
}

.why-intro-sticky {
    position: sticky;
    top: 60px
}

.why-intro h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(45px, 5vw, 78px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -4px
}

.why-intro h2 span {
    color: #96928b
}

.why-intro>div>p {
    max-width: 460px;
    margin-top: 35px;
    font-size: 15px;
    line-height: 1.8;
    color: #77736d
}

.why-highlight {
    display: flex;
    align-items: flex-end;
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid #c9c6bf
}

.why-highlight>strong {
    font-family: "Manrope", sans-serif;
    font-size: clamp(90px, 10vw, 150px);
    font-weight: 500;
    line-height: .75;
    letter-spacing: -9px
}

.why-highlight>div {
    padding-left: 18px
}

.why-highlight>div span {
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    color: #6c9f2d
}

.why-highlight>div p {
    max-width: 120px;
    margin-top: 12px;
    font-size: 10px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #77736d
}

.why-list {
    border-top: 1px solid #bcb9b2
}

.why-item {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr 50px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid #bcb9b2;
    overflow: hidden;
    cursor: pointer;
    transition: padding .4s cubic-bezier(.16, 1, .3, 1)
}

.why-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #111816;
    transition: height .45s cubic-bezier(.16, 1, .3, 1)
}

.why-item>* {
    position: relative;
    z-index: 1
}

.why-index {
    font-size: 10px;
    color: #888;
    padding-top: 8px;
    transition: .3s
}

.why-item-content h3 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(23px, 2.2vw, 34px);
    font-weight: 500;
    letter-spacing: -1.5px;
    transition: .3s
}

.why-item-content p {
    max-width: 550px;
    max-height: 0;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #929792;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s ease, opacity .4s ease, margin .4s ease
}

.why-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: .4s
}

.why-item:hover {
    padding: 32px 25px
}

.why-item:hover::before {
    height: 100%
}

.why-item:hover .why-index {
    color: #b8ff5a
}

.why-item:hover .why-item-content h3 {
    color: #fff
}

.why-item:hover .why-item-content p {
    max-height: 100px;
    margin-top: 15px;
    opacity: 1
}

.why-item:hover .why-arrow {
    background: #b8ff5a;
    border-color: #b8ff5a;
    transform: rotate(45deg)
}

@media(max-width:1000px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 80px
    }

    .why-intro-sticky {
        position: relative;
        top: 0
    }

    .why-intro h2 {
        letter-spacing: -3px
    }

    .why-intro>div>p {
        max-width: 600px
    }

    .why-highlight {
        max-width: 550px;
        margin-top: 60px
    }
}

@media(max-width:600px) {
    .why-section {
        padding: 75px 6%
    }

    .why-top {
        margin-bottom: 60px
    }

    .why-layout {
        gap: 60px
    }

    .why-intro h2 {
        font-size: 42px;
        letter-spacing: -2.5px
    }

    .why-intro>div>p {
        font-size: 14px
    }

    .why-highlight {
        margin-top: 50px
    }

    .why-highlight>strong {
        font-size: 100px;
        letter-spacing: -7px
    }

    .why-highlight>div span {
        font-size: 28px
    }

    .why-item {
        grid-template-columns: 35px 1fr 38px;
        padding: 25px 0
    }

    .why-item-content h3 {
        font-size: 22px;
        letter-spacing: -1px
    }

    .why-item-content p {
        max-height: 150px;
        margin-top: 12px;
        font-size: 13px;
        opacity: 1
    }

    .why-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px
    }

    .why-item:hover {
        padding: 25px 12px
    }
}