.cst-footer-trust {
    padding: 0 24px;
}

.cst-footer-trust-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
        linear-gradient(180deg, rgba(212,175,55,0.035), rgba(255,255,255,0));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 24px 70px rgba(0,0,0,0.22),
        0 0 0 1px rgba(255,255,255,0.025);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cst-footer-trust-card {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 118px;
    padding: 26px 22px;
    position: relative;
}

.cst-footer-trust-card:not(:last-child) {
    border-right: 1px solid rgba(212, 175, 55, 0.14);
}

.cst-footer-trust-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 50%;
    color: #D4AF37;
    background:
        radial-gradient(circle at 35% 30%, rgba(212,175,55,0.28), rgba(212,175,55,0.07)),
        rgba(255,255,255,0.025);
    flex: 0 0 auto;
}

.cst-footer-trust-svg {
    width: 19px;
    height: 19px;
    display: block;
}

.cst-footer-trust-content strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 850;
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

.cst-footer-trust-content p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 13.5px;
    line-height: 1.45;
}

@media (max-width: 1024px) {
    .cst-footer-trust-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cst-footer-trust-card:not(:last-child) {
        border-right: none;
    }

    .cst-footer-trust-card:nth-child(odd) {
        border-right: 1px solid rgba(212, 175, 55, 0.14);
    }

    .cst-footer-trust-card:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    }
}

@media (max-width: 767px) {
    .cst-footer-trust {
        padding: 0 18px;
    }

    .cst-footer-trust-inner {
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        overflow: hidden;
    }

    .cst-footer-trust-card {
        min-height: auto;
        padding: 22px 22px;
        gap: 16px;
        align-items: flex-start;
    }

    .cst-footer-trust-card,
    .cst-footer-trust-card:nth-child(odd),
    .cst-footer-trust-card:not(:last-child) {
        border-right: none;
    }

    .cst-footer-trust-card:not(:last-child) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    }

    .cst-footer-trust-icon {
        width: 46px;
        height: 46px;
        margin-top: 2px;
    }

    .cst-footer-trust-svg {
        width: 20px;
        height: 20px;
    }

    .cst-footer-trust-content strong {
        font-size: 15px;
        line-height: 1.25;
        letter-spacing: 0.045em;
    }

    .cst-footer-trust-content p {
        font-size: 14.2px;
        line-height: 1.5;
        max-width: 260px;
    }
}