.hero {
    padding: 100px 60px;
    padding-top: 130px;
    margin-top: 38px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 2900px;
    margin-left: auto;
    margin-right: auto;
}
.hero__inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1320px;
}
.hero__text {
    width: 750px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.hero__badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-blue-light);
    border: 2px solid var(--color-blue-border);
    border-radius: 27px;
    padding: 2px 18px;
    height: 48px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-blue);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
}
.hero__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 100, 255, 0.15);
}
.hero__badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.hero__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.4px;
    margin: 0;
    color: #0A0A0A;
}
.hero__title span {
    font-size: 38px;
    font-style: italic;
    font-weight: 400;
    line-height: 130%;
    display: block;
    margin-top: 24px;
    max-width: 500px;
}
.hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
    max-width: 530px;
}
.hero__social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero__avatars {
    display: flex;
    align-items: center;
}
.hero__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-cream);
    margin-right: -10px;
    overflow: hidden;
    flex-shrink: 0;
}
.hero__avatar--count {
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}
.hero__proof-text {
    font-size: 13px;
    margin-left: 18px;
}
.hero__proof-text strong {
    font-weight: 600;
}
.hero__proof-text span {
    color: var(--color-gray);
}

.hero .btn {
    width: fit-content;
    margin-top: 10px;
}

.hero__visual-picture {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1180px) {
    .hero {
        padding: 50px 32px;
        padding-top: 100px;
        height: fit-content;
        min-height: unset;
    }
    .hero__inner {
        gap: 32px;
    }
    .hero__text {
        width: 100%;
        max-width: 540px;
        flex-shrink: 1;
    }
    .hero__title {
        font-size: 72px;
    }
}
@media (max-width: 980px) {
    .hero {
        padding: 32px 24px;
        padding-top: 100px;
    }
    .hero__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .hero__text {
        width: 100%;
        order: 2;
        gap: 20px;
    }
    .hero__title {
        font-size: 56px;
    }
    .hero__subtitle {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .hero__visual-picture {
        position: initial;
    }
    .hero {
        padding: 0;
        flex-direction: column;
    }

    .hero__text {
        width: 100%;
        max-width: unset;
        padding: 20px;
        gap: 14px;
        background-color: #F5F4F0;
    }

    .hero__badge {
        padding: 2px 10px;
        height: 36px;
        border-radius: 16px;
        font-size: 14px;
    }

    .hero__title span {
        font-size: 26px;
        margin-top: 12px;
    }

    .hero__title {
        font-size: 44px;
        letter-spacing: -1px;
    }
    .hero__badges {
        margin-top: 0;
    }
}
@media (max-width: 400px) {
    .hero__title {
        font-size: 32px;
    }
}
