.mh-chip {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--warm-100);
    color: var(--ink-700);
    font-size: 0.9rem;
    font-weight: 600;
}

.mh-voices {
    max-width: 880px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mh-voice {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.7rem;
    max-width: 76%;
    transition: transform 0.18s ease;
}

.mh-voice:hover {
    transform: rotate(0deg) scale(1.015);
}

.mh-voice:nth-child(1) {
    align-self: flex-start;
    margin-left: 2%;
    transform: rotate(-1.5deg);
}

.mh-voice:nth-child(2) {
    align-self: flex-end;
    flex-direction: row-reverse;
    margin-right: 3%;
    transform: rotate(2deg);
}

.mh-voice:nth-child(3) {
    align-self: flex-start;
    margin-left: 13%;
    transform: rotate(1deg);
}

.mh-voice:nth-child(4) {
    align-self: flex-end;
    flex-direction: row-reverse;
    margin-right: 1%;
    transform: rotate(-2deg);
}

.mh-voice:nth-child(5) {
    align-self: center;
    transform: rotate(1.5deg);
}

.mh-voice:nth-child(6) {
    align-self: flex-end;
    flex-direction: row-reverse;
    margin-right: 6%;
    transform: rotate(1deg);
}

.mh-voice:nth-child(7) {
    align-self: flex-start;
    margin-left: 9%;
    transform: rotate(-1.5deg);
}

.mh-voice:nth-child(8) {
    align-self: flex-start;
    margin-left: 20%;
    transform: rotate(2deg);
}

.mh-voice-avatar {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 3px 8px rgba(var(--ink-900-rgb), 0.15);
}

.mh-voice-bubble {
    position: relative;
    padding: 0.85rem 1.15rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 6px 18px rgba(var(--ink-900-rgb), 0.07);
    color: var(--ink-700);
    font-weight: 500;
}

.mh-voice:nth-child(2) .mh-voice-bubble,
.mh-voice:nth-child(4) .mh-voice-bubble,
.mh-voice:nth-child(6) .mh-voice-bubble {
    background: var(--brand-soft);
    border-color: transparent;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 5px;
}

@media (max-width: 575.98px) {
    .mh-voice {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
    }

    .mh-voice-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

.mh-browser {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 44px rgba(var(--ink-900-rgb), 0.16);
}

.mh-browser-img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: top center;
}

.mh-browser-img-left {
    object-position: top left;
}

.mh-browser-img-tall {
    height: 720px;
}

.mh-browser-img-contain {
    height: auto;
    object-fit: contain;
}

.mh-stack {
    position: relative;
    padding: 10px 2% 12px 27%;
}

.mh-stack .mh-browser {
    background: #fff;
}

.mh-stack-front {
    position: relative;
    z-index: 3;
}

.mh-stack-back1,
.mh-stack-back2 {
    position: absolute;
    top: 10px;
    left: 27%;
    right: 2%;
}

.mh-stack-back1 {
    z-index: 2;
    transform: rotate(-8deg) translate(-30%, 0) scale(0.92);
}

.mh-stack-back2 {
    z-index: 1;
    transform: rotate(-15deg) translate(-50%, 1%) scale(0.85);
}

@media (max-width: 991.98px) {
    .mh-stack {
        padding: 0;
    }

    .mh-stack-back1,
    .mh-stack-back2 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .mh-browser-img {
        height: 380px;
    }

    .mh-browser-img-tall {
        height: 520px;
    }
}

.mh-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-strong);
    font-size: 1.25rem;
    font-weight: 800;
}
