.hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #111827;
}

.hero-title .highlight {
    color: #DA932B;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #848b9c;
}

.hero-image-wrapper {
    position: relative;
}

.hero-circle {
    position: absolute;
    width: 750px;
    height: 750px;
    background: rgba(218, 147, 43, 0.06);
    border-radius: 50%;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    min-width: 750px;
    object-fit: contain;
    margin-right: -120px;
}

@media (max-width: 991px) {

    .home-hero {
        text-align: center;
        padding-top: 3rem;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-image-wrapper {
        margin-top: 1rem;
        margin-bottom: -2rem;
    }

    .hero-circle {
        width: 380px;
        height: 380px;
        right: 50%;
        top: 45%;
        transform: translate(50%, -50%);
    }

    .hero-image {
        max-width: 550px;
        min-width: auto;
        width: 115%;
        margin-right: 0;
        transform: translateY(-30px);
    }
}
