/* H1 героя — компактнее (было clamp до 67px) */
body .hl-hero-title {
    font-size: clamp(26px, 3.8vw, 48px);
}

/* десктоп: фото опущено — верх кадра (лицо) целиком в блоке */
@media (min-width: 769px) {
    body .hl-hero { background-position: right top; }
}

/* Тултип «?» калькулятора — справа от знака (не перекрывается фото-зоной) */
body .hc-tip::after {
    bottom: auto;
    top: 50%;
    left: calc(100% + 10px);
    right: auto;
    transform: translateY(-50%);
    z-index: 400;
}
body .hc-tip::before {
    bottom: auto;
    top: 50%;
    left: calc(100% + 4px);
    right: auto;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #2a201b;
}
@media (max-width: 560px) {
    body .hc-tip::after {
        top: auto;
        bottom: calc(100% + 10px);
        left: auto;
        right: -8px;
        transform: none;
    }
    body .hc-tip::before {
        top: auto;
        bottom: calc(100% + 3px);
        left: auto;
        right: 0;
        transform: none;
        border: 6px solid transparent;
        border-top-color: #2a201b;
    }
}

/* «Преимущества» + «Создано радовать» — единый блок:
   стык без зазора, скругления только по внешним углам */
body .hl-benefits {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}
body .hl-quality {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    margin-top: 0;
}
