﻿.trust-section {
    padding: 3rem 0;
    background: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.trust-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-content {
    text-align: center;
}

.trust-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.trust-text p {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4A5568;
    text-align: start;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.trust-list svg {
    width: 20px;
    height: 20px;
    stroke: #0754DA;
    fill: none;
    transform: translateY(2px);
    stroke-width: 1.8;
}

.trust-image {
    position: relative;
}

.trust-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    transform: scale(0.9);
}

.trust-halo {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

/* Desktop */
@media (min-width: 768px) {
    .trust-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
    }

    .trust-content {
        order: 2;
        text-align: left;
    }

    .trust-image {
        order: 1;
    }
}
