.trust-section {
    width: 100%;
    background-color: var(--clr-light-bg);
    border-top: 1px solid var(--clr-border);
    contain: layout paint;
}
.trust-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: var(--max-w-container);
    margin: 0 auto;
    padding: 80px 40px;
}
.trust-features-box {
    display: flex;
    width: max-content;
    margin-bottom: 29px;
    max-width: 100%;
    border: 1px solid var(--clr-light-border);
    border-radius: 5px;
    overflow: hidden;
}
.trust-feature-item {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--clr-btn-primary-txt);
}
.trust-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: var(--clr-accent);
}
.trust-content {
    text-align: center;
    width: 75%;
    margin: 0 auto 35px auto;
}
.trust-content h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--clr-btn-primary-txt);
}
.trust-content p {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
}
.broker-wrapper {
    position: relative;
    width: 840px;
    max-width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.broker-nav {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--clr-text);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    padding: 0;
}
.broker-nav svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: var(--clr-btn-primary-txt);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease;
}
.broker-nav:hover svg {
    stroke: var(--clr-accent);
}
.broker-nav.disabled {
    cursor: default;
}
.broker-nav.disabled svg,
.broker-nav.disabled:hover svg {
    stroke: var(--clr-muted);
}
.broker-nav.prev { margin-right: 20px; }
.broker-nav.next { margin-left: 20px; }
.broker-nav.removed { display: none; }
.broker-track-container {
    flex: 1;
    overflow: hidden;
    height: 80px;
    min-width: 0;
}
.broker-track {
    display: flex;
    gap: 40px;
    height: 80px;
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}
.broker-card,
.broker-card-dots {
    flex-shrink: 0;
    height: 80px;
    background: var(--clr-text);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.broker-card img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.broker-card-dots {
    cursor: pointer;
    text-decoration: none;
}
.broker-card-dots span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--clr-muted);
    transition: color 0.2s ease;
    line-height: 1;
}
.broker-card-dots:hover span {
    color: var(--clr-accent);
}
.partners-section {
    width: 100%;
    background-color: var(--clr-light-bg);
    border-top: 1px solid var(--clr-light-border);
    contain: layout paint;
}
.partners-container {
    width: 100%;
    max-width: var(--max-w-container);
    margin: 0 auto;
    padding: 30px 40px 35px 40px;
}
.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.partners-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: var(--clr-btn-primary-txt);
}
.partners-divider {
    width: 1px;
    background-color: var(--clr-light-border);
    align-self: stretch;
}
.partners-text h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}
.partners-text p {
    font-size: 14px;
    line-height: 20px;
}
.partners-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}
.logo-box {
    flex: 1;
    background-color: var(--clr-text);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.logo-box img {
    height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
@media (min-width: 751px) {
    .partners-text {
        margin-bottom: 35px;
    }
}
@media (max-width: 1050px) {
    .trust-content {
        width: 100%;
    }
    .broker-wrapper {
        width: 100%;
    }
}
@media (max-width: 750px) {
    .trust-container {
        padding: 40px 20px;
    }
    .trust-features-box {
        width: 100%;
        flex-wrap: wrap;
    }
    .trust-feature-item {
        padding: 0 10px;
        flex: auto;
        height: 40px;
    }
    .trust-feature-item:nth-child(1),
    .trust-feature-item:nth-child(2) {
        width: 50%;
    }
    .trust-feature-item:nth-child(3) {
        width: 100%;
        border-top: 1px solid var(--clr-light-border);
    }
    .trust-feature-item:nth-child(2)::after {
        display: none;
    }
    .broker-track {
        gap: 20px;
    }
    .partners-container {
        padding: 35px 20px 40px 20px;
    }
    .partners-grid {
        flex-direction: column;
        gap: 35px;
    }
    .partners-text {
        margin-bottom: 15px;
    }
    .partners-divider {
        display: none;
    }
}
