.hero {
    position: relative;
    padding: 36px 0 80px;
}

.hero__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 606px;
}

.hero__headline {
    font-family: var(--font-primary);
    font-size: 52px;
    line-height: 60px;
    letter-spacing: -1px;
    color: #FBFCF7;
    margin-bottom: 14px;
}

.hero__headline-light {
    font-style: italic;
    font-weight: 300;
}

.hero__headline-bold {
    font-style: normal;
    font-weight: 700;
}

.hero__subtitle {
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FBFCF7;
    margin-bottom: 19px;
}

.hero__description {
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #B2B7A4;
    max-width: 538px;
    margin-bottom: 34px;
}

.hero__right {
    width: 420px;
    height: 340px;
    flex-shrink: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn--outline-accent {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 56px;
    padding: 10px 32px;
    border: 1px solid #CDF850;
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #CDF850;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.btn--outline-accent:hover {
    background: rgba(205, 248, 80, 0.1);
    color: #CDF850;
}

.hero__buttons-mobile {
    display: none;
}

@media (max-width: 640px) {
    .hero {
        padding: 12px 0 40px;
    }

    .hero__container {
        flex-direction: column;
        align-items: center;
        max-width: 375px;
        padding: 0 24px;
    }

    .hero__right {
        display: block;
        order: -1;
        width: 250px;
        height: 202px;
        margin: 0 auto 16px auto;
    }

    .hero__right .hero__image {
        width: 250px;
        height: 202px;
        object-fit: contain;
    }

    .hero__content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding-top: 0;
    }

    .hero__headline {
        font-size: 26px;
        line-height: 32px;
        width: 286px;
        text-align: center;
        margin-bottom: 7px;
        letter-spacing: -0.5px;
        color: #FCFDFB;
    }

    .hero__headline-light {
        font-weight: 300;
        font-style: italic;
    }

    .hero__subtitle {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        width: 326px;
        text-align: center;
        margin-bottom: 21px;
        color: #FFFFFF;
    }

    .hero__description {
        font-size: 12px;
        line-height: 20px;
        text-align: center;
        width: 272px;
        max-width: 272px;
        margin-bottom: 22px;
        color: #D7D9D9;
    }

    .hero__content > .btn--outline-accent:not(.hero__buttons-mobile .btn--outline-accent) {
        display: none;
    }

    .hero__buttons-mobile {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .hero__buttons-mobile .btn--outline-accent {
        min-width: 127px;
        height: 36px;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0.08px;
    }
}
