/* TRUST */
.trust {
    background: #001D3F;

}

.trust .section-headline {
    max-width: 725px;
}

.trust .section-sub {
    max-width: 595px;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
    margin-bottom: 30px;
}

.trust-card {
    border-radius: 15px;
    padding: 2rem;
    transition: all .3s;
    background: #182A4E80;
    border: 1px solid #293E67;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.trust-card:hover::before {
    left: 150%;
}

.trust-card:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
}

.trust-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid #222F57;
    background: #142751;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a3363;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.trust-card h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 11px;
}

.trust-card p {
    font-size: 13px;
    line-height: 17px;
    color: #96A4B4;
    font-weight: 400;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 30px;
    border-top: 1px solid #293E67;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #182A4E80;
    border: 1px solid #293E67;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    line-height: 17px;
    color: #6C91BD;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.05);
}

.trust-badge img,
.trust-badge svg {
    opacity: .6;
    transition: all 0.3s ease;
}

.trust-badge:hover img,
.trust-badge:hover svg {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
}

.trust .section-headline {
    color: #fff;
    margin-bottom: 18px;
}

.trust .section-sub {
    color: #6C91BD;
    margin-bottom: 31px;
}