.promo-trust-box {
    width: 98%;
    margin: 24px auto;
    padding: 26px 30px;
    position: relative;
    border-radius: 18px;

    /* GLAVNO: transparent + glass */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 215, 0, 0.35);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 215, 0, 0.15),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
}

/* subtle gold glow animation */
.promo-trust-box:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    background: linear-gradient(120deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.promo-trust-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.promo-trust-badge {
    min-width: 100px;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 12px;

    background: linear-gradient(135deg, #FFD700, #FFB800);
    color: #111;

    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.promo-trust-top-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFD700;
}

.promo-trust-top-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.promo-trust-top-text strong {
    color: #FFD700;
}

.promo-trust-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent);
    margin: 20px 0;
}

.promo-trust-title {
    font-size: 28px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
}

.promo-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.promo-trust-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);

    transition: .3s;
}

.promo-trust-item:hover {
    transform: translateY(-3px);
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.promo-trust-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;

    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
    font-size: 18px;

    box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.2);
}

.promo-trust-item__title {
    font-size: 18px;
    font-weight: 800;
    color: #FFD700;
}

.promo-trust-item__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* responsive */
@media (max-width: 992px) {
    .promo-trust-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-trust-grid {
        grid-template-columns: 1fr;
    }

    .promo-trust-title {
        font-size: 24px;
    }
}