.hero__visual {
    position: relative;
    padding-inline: 12px;
}

.hero__visual-stage {
    position: relative;
    min-height: 470px;
    border-radius: 40px;
    overflow: visible;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 54%),
        radial-gradient(circle at 50% 100%, rgba(217, 134, 149, 0.12), rgba(217, 134, 149, 0) 62%);
}

.hero__visual-note {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    max-width: 250px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 32px rgba(112, 72, 84, 0.08);
}

.hero__visual-note strong,
.hero__visual-note span {
    display: block;
}

.hero__visual-note strong {
    color: var(--site-accent-deep);
    font-size: 14px;
    font-weight: 800;
}

.hero__visual-note span {
    margin-top: 8px;
    color: var(--site-ink);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.hero-phone {
    position: absolute;
    margin: 0;
    padding: 10px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 24px 54px rgba(126, 86, 97, 0.16),
        inset 0 0 0 1px rgba(217, 134, 149, 0.12);
}

.hero-phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    width: 76px;
    height: 12px;
    border-radius: 999px;
    background: #1f1f22;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-phone img {
    width: 100%;
    display: block;
    border-radius: 28px;
}

.hero-phone--center {
    z-index: 3;
    width: clamp(240px, 54vw, 342px);
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
}

.hero-phone--left,
.hero-phone--right {
    z-index: 2;
    width: clamp(176px, 38vw, 272px);
    top: 126px;
}

.hero-phone--left {
    left: 0;
    transform: rotate(-10deg);
}

.hero-phone--right {
    right: 0;
    transform: rotate(10deg);
}

.hero__visual-tags {
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero__visual-tags span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(112, 72, 84, 0.08);
    font-size: 14px;
    font-weight: 800;
    color: var(--site-ink);
}

@media (max-width: 759px) {
    .hero__visual-stage {
        min-height: 500px;
        margin-top: -10px;
    }

    .hero__visual-note,
    .hero__visual-tags {
        display: none;
    }

    .hero-phone--center {
        width: min(230px, 52vw);
        top: 10px;
    }

    .hero-phone--left,
    .hero-phone--right {
        top: 98px;
        width: min(168px, 34vw);
    }
}

@media (min-width: 960px) {
    .hero__visual-stage {
        min-height: 720px;
    }

    .hero__visual-note {
        top: 22px;
        left: 22px;
        max-width: 268px;
    }

    .hero-phone--center {
        width: min(420px, 72%);
        top: 30px;
    }

    .hero-phone--left,
    .hero-phone--right {
        width: min(268px, 42%);
        top: 204px;
    }

    .hero-phone--left {
        left: 18px;
        transform: rotate(-12deg);
    }

    .hero-phone--right {
        right: 18px;
        transform: rotate(11deg);
    }
}
