.trust-section {
	position: relative;
	padding: 110px 0;
}

.trust-section-head {
    max-width: 860px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.trust-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    border-color: rgba(15, 23, 42, 0.14);
}

.trust-card-secure {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
    border-color: rgba(16, 185, 129, 0.22);
}

.trust-card-server {
    position: relative;
}

.trust-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.10);
    color: #ea580c;
}

.trust-card-secure .trust-card-icon {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

.trust-card-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.trust-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.25;
    color: #0f172a;
}

.trust-card p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.trust-server-badge {
    display: inline-flex;
    margin-top: 18px;
}

.trust-server-badge img {
    width: auto;
    max-width: 195px;
    height: auto;
    display: block;
    border-radius: 10px;
}

@media (max-width: 1100px) {
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-section {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .trust-card {
        padding: 22px;
        border-radius: 20px;
    }

    .trust-card h3 {
        font-size: 18px;
    }

    .trust-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .trust-card-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .trust-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-server-badge img {
        max-width: 170px;
    }
}

