.home-banner {
    background: var(--gray-20);
    position: relative;
    overflow: hidden;
}

.home-banner__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.home-banner__right {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3.33vw, 64px);
    padding: clamp(60px, 11.46vw, 220px) 0;
    width: clamp(300px, 36.2vw, 695px);
    position: relative;
    z-index: 2;
}

.home-banner__right-top {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 48px);
}

.banner-title {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.25vw, 24px);
    font-family: PP Neue Montreal;
    font-weight: 500;
    font-style: Medium;
    font-size: clamp(32px, 5.83vw, 112px);
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--gray-100);
}

.banner-title span {
    font-family: Nib Pro;
    font-weight: 500;
    font-style: Italic;
    font-size: clamp(32px, 5.83vw, 112px);
    leading-trim: NONE;
    line-height: clamp(28px, 4.16vw, 80px);
    letter-spacing: 0%;
    text-align: right;
    color: var(--gray-100);
    text-transform: none;
}

.banner-subtitle {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 1.25vw, 24px);
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--gray-100);
}

.home-banner__right-btns {
    display: flex;
    flex-direction: row;
    gap: clamp(12px, 1.66vw, 32px);
    flex-wrap: wrap;
}

.home-banner__left {
    width: clamp(300px, 36.56vw, 702px);
    position: absolute;
    right: 0;
    z-index: 1;
    height: 100%;
    bottom: 0;
}

.home-banner__left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-banner__svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(400px, 50.78vw, 975px);
    height: auto;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .home-banner__wrapper {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .home-banner__left {
        position: relative;
        width: 100%;
        height: auto;
        max-width: 520px;
        margin: 0 auto;
        padding-top: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .home-banner__left img {
        width: 100%;
        height: auto;
        max-height: 420px;
        object-fit: contain;
    }

    .home-banner__right {
        width: 100%;
        padding: 32px 0 50px 0;
        gap: 32px;
    }

    .home-banner__right-top {
        gap: 24px;
    }

    .banner-title {
        font-size: 52px;
        line-height: 105%;
        gap: 16px;
    }

    .banner-title span {
        font-size: 52px;
        line-height: 52px;
        text-align: left;
    }

    .banner-subtitle {
        font-size: 20px;
        line-height: 140%;
    }

    .home-banner__right-btns {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }

    .home-banner__svg {
        display: flex;
        width: 280px;
        right: 32px;
        top: 221px;
    }
}

@media (max-width: 768px) {
    .home-banner__left {
        max-width: 440px;
        padding-top: 24px;
    }

    .home-banner__left img {
        max-height: 360px;
    }

    .home-banner__right {
        padding: 24px 0 40px 0;
        gap: 24px;
    }

    .home-banner__right-top {
        gap: 20px;
    }

    .banner-title {
        font-size: 42px;
        line-height: 105%;
        gap: 12px;
    }

    .banner-title span {
        font-size: 42px;
        line-height: 44px;
    }

    .banner-subtitle {
        font-size: 16px;
        line-height: 140%;
    }
}

@media (max-width: 576px) {
    .home-banner__left {
        max-width: 100%;
        padding-top: 20px;
    }

    .home-banner__left img {
        max-height: 300px;
    }

    .home-banner__right {
        padding: 20px 0 36px 0;
        gap: 20px;
    }

    .home-banner__right-top {
        gap: 16px;
    }

    .banner-title {
        gap: 6px;
        font-weight: 500;
        font-style: Medium;
        font-size: 64px;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: 0%;
        text-transform: uppercase;

    }

    .banner-title span {
        font-family: Nib Pro;
        font-weight: 400;
        font-style: SemiBold Italic;
        font-size: 64px;
        leading-trim: NONE;
        line-height: 70%;
        letter-spacing: 0%;
        text-align: right;

    }

    .banner-subtitle {
        font-size: 14px;
        line-height: 140%;
    }

    .home-banner__right-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .home-banner__right-btns a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
    .home-banner__right-btns a:nth-child(2) {
        display: none;
    }
}

@media (max-width: 380px) {
    .banner-title {
        font-size: 29px;
    }

    .banner-title span {
        font-size: 29px;
        line-height: 32px;
    }

    .banner-subtitle {
        font-size: 14px;
    }
}
