/* B2B Trust Bar Styles (Aero / Glassmorphism) */
.trust-bar {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    margin-top: 4rem;
    /* Remove old static styles */
    background-color: transparent;
    border: none;
}

/* Container for content relative to video */
.trust-bar .container {
    position: relative;
    z-index: 2;
}

/* Background Video & Blur Layer specific for Trust Bar */
/* We will reuse hero__video-bg and hero__blur-layer classes in HTML, 
   but we ensure positioning matches here */
.trust-bar .hero__video-bg,
.trust-bar .hero__blur-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trust-bar .hero__blur-layer {
    /* Using the exact same blur as Hero */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.trust-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.trust-text {
    flex: 1;
    max-width: 400px;
}

.trust-text h3 {
    font-size: 2.5rem;
    /* Hero-like size */
    color: #1e2a5a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.trust-text p {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.6;
}

.trust-steps {
    flex: 2;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

/* "Petit carré aero" styles for steps */
.step-small {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    transition: transform 0.3s ease, background-color 0.3s ease;
    min-width: 200px;
}

.step-small:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-small strong {
    color: var(--color-primary);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.step-small span {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-steps {
        width: 100%;
        flex-direction: column;
        /* Stack steps on tablet/mobile */
    }

    .trust-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}