/* Trusted Service — box-shadow glow at headlight positions (no visible shapes) */

.trusted-service {
    width: 100%;
    max-width: 100%;
    background: #000;
    overflow: hidden;
    box-sizing: border-box;
}

.trusted-service__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.trusted-service__figure {
    margin: 0;
    width: 100%;
}

.trusted-service__van-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    line-height: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.trusted-service__van-wrap:focus-visible {
    outline: 2px solid rgba(232, 81, 38, 0.85);
    outline-offset: 4px;
}

.trusted-service__img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    vertical-align: top;
}

/* Invisible anchors — only box-shadow shows on hover (trusted-service.png 1024×501) */
.trusted-service__hl {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    box-shadow: none;
    pointer-events: none;
    transition: box-shadow 0.35s ease;
    will-change: box-shadow;
}

.trusted-service__hl--left {
    top: 66.6%;
    left: 37.0%;
}

.trusted-service__hl--right {
    top: 66.6%;
    left: 63.2%;
}

.trusted-service__van-wrap:hover .trusted-service__hl,
.trusted-service__van-wrap.is-lit .trusted-service__hl {
    box-shadow: 0 0 46px 55px rgba(255, 255, 255, 0.76);
}

/* Tablet */
@media (max-width: 991.98px) {
    .trusted-service__van-wrap:hover .trusted-service__hl,
    .trusted-service__van-wrap.is-lit .trusted-service__hl {
        box-shadow: 0 0 34px 40px rgba(255, 255, 255, 0.72);
    }

    .trusted-service__hl--left {
        top: 66.4%;
        left: 36.8%;
    }

    .trusted-service__hl--right {
        top: 66.4%;
        left: 63.4%;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .trusted-service {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .trusted-service__van-wrap:hover .trusted-service__hl,
    .trusted-service__van-wrap.is-lit .trusted-service__hl {
        box-shadow: 0 0 24px 28px rgba(255, 255, 255, 0.68);
    }

    .trusted-service__hl--left {
        top: 66.2%;
        left: 36.5%;
    }

    .trusted-service__hl--right {
        top: 66.2%;
        left: 63.6%;
    }
}

/* Small phones */
@media (max-width: 374.98px) {
    .trusted-service__van-wrap:hover .trusted-service__hl,
    .trusted-service__van-wrap.is-lit .trusted-service__hl {
        box-shadow: 0 0 18px 22px rgba(255, 255, 255, 0.65);
    }
}

@media (prefers-reduced-motion: reduce) {
    .trusted-service__hl {
        transition: none;
    }
}
