.hero-section {
    position: relative;
    background: var(--gradient-primary);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 170px;
    margin-left: 20px;
    margin-right: 20px;
}

.hero-container {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    max-width: 713px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.hero-content h1 {
    font-size: clamp(24px, 4vw + 0.5rem, 66px);
    font-weight: var(--font-weight-medium, 500);
    line-height: 1.15;
    color: var(--color-neutral-500);
    margin: 0;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-description p {
    font-size: 18px;
    font-weight: var(--font-weight-regular, 400);
    line-height: 22px;
    color: var(--color-neutral-500);
    margin: 0;
}

.hero-description-bold {
    font-weight: var(--font-weight-semibold, 600) !important;
}

.hero-separator {
    width: 658px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-neutral-500) 0%, transparent 100%);
    opacity: 0.2;
}

.hero-illustration {
    position: relative;
    width: 455px;
    height: 532px;
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1322px) {
    .hero-section {
        margin-top: -100px;
        padding-top: 140px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hero-separator {
        width: 100%;
        max-width: 500px;
        background: linear-gradient(90deg, transparent 0%, var(--color-neutral-500) 50%, transparent 100%);
    }

    .hero-illustration {
        width: 350px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
        margin: -100px 10px 0;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .hero-container {
        padding: 0 20px;
        gap: 40px;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-description p {
        font-size: 16px;
        line-height: 22px;
    }

    .hero-illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 150px 0 48px;
        margin: -100px 8px 0;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .hero-container {
        padding: 0 16px;
        gap: 32px;
    }

    .hero-content {
        gap: 24px;
    }

    .hero-description p {
        font-size: 14px;
        line-height: 20px;
    }

    .hero-separator {
        display: none;
    }
}
