.hero {
    background: var(--color-cream);
    padding: 80px 60px;
    min-height: calc(100vh - 38px - 80px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__inner {
    display: flex;
    align-items: center;
    gap: 0px;
    width: 100%;
    max-width: 1320px;
}
.hero__text {
    width: 697px;
    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: 120px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.4px;
    color: var(--color-black);
    margin: 0;
}
.hero__title em {
    font-style: italic;
    font-weight: 700;
}
.hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
}
.hero__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hero__tag {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 27px;
    padding: 5px 17px 5px 13px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.6);
}
.hero__tag svg {
    width: 15px;
    height: 15px;
    opacity: 0.5;
}
.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);
}
/* Visual */
.hero__visual {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
}
.hero__visual-picture {
    --overflow: 200px;
    position: absolute;
    width: calc(100% + var(--overflow));
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    max-width: unset;
}

.hero__visual-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 24px;
    object-fit: cover;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.hero__placeholder {
    width: 100%;
    min-height: 480px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        #fff0e0,
        #ffe8cc 40%,
        #ffd9b3 70%,
        #ffc896
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease;
}
.hero__placeholder::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 200, 140, 0.6) 0%,
        transparent 70%
    );
    top: -60px;
    right: -60px;
}
.hero__placeholder::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 160, 100, 0.4) 0%,
        transparent 70%
    );
    bottom: -40px;
    left: -40px;
}
.hero__placeholder-icon {
    font-size: 36px;
    position: relative;
    z-index: 1;
}
.hero__placeholder-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: rgba(10, 10, 10, 0.4);
    position: relative;
    z-index: 1;
}
.hero__placeholder-sub {
    font-size: 13px;
    color: rgba(10, 10, 10, 0.3);
    position: relative;
    z-index: 1;
}

@media (max-width: 1520px) {
    .hero__visual-picture {
        --overflow: 120px;
    }
}

@media (max-width: 1180px) {
    .hero {
        padding: 0 32px;
        height: fit-content;
        min-height: unset;
    }
    .hero__inner {
        gap: 32px;
    }
    .hero__text {
        width: 100%;
        max-width: 540px;
        flex-shrink: 1;
    }
    .hero__title {
        font-size: 80px;
    }
    .hero__placeholder {
        min-height: 400px;
    }
}
@media (max-width: 980px) {
    .hero__visual-picture {
        --overflow: 0;
        position: initial;
        transform: none;
    }
    .hero__visual-img {
        min-height: unset;
    }
    .hero {
        padding: 32px 24px 48px;
    }
    .hero__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .hero__text {
        width: 100%;
        order: 2;
        gap: 20px;
    }
    .hero__visual {
        order: 1;
        flex: none;
    }
    .hero__title {
        font-size: 56px;
    }
    .hero__subtitle {
        font-size: 16px;
    }
    .hero__placeholder {
        min-height: 280px;
        border-radius: 20px;
    }
}
@media (max-width: 600px) {
    .hero {
        padding: 24px 16px 40px;
        padding-top: 0;
    }
    .hero__inner {
        gap: 0px;
    }
    .hero__title {
        font-size: 44px;
        letter-spacing: -1px;
    }
    .hero__placeholder {
        min-height: 240px;
        border-radius: 16px;
    }
    .hero__badges {
        margin-top: 0;
    }
}
@media (max-width: 400px) {
    .hero__title {
        font-size: 36px;
    }
    .hero__placeholder {
        min-height: 200px;
    }
}
