/* Backed By Section Styles - Light Theme */
.backed-by-section {
    padding: 4rem 0;
    /* Align with adjacent light-gray sections */
    background: var(--bg-secondary);
    position: relative;
}

.backed-by-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.backed-by-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.vc-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.vc-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-md);
}

.vc-logo {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Trust metrics - Light theme */
.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-divider {
    width: 1px;
    height: 2rem;
    background: var(--border-default);
}

.trust-metrics.in-view .metric-item {
    animation: metricPulse 0.6s ease-out;
}

.trust-metrics.in-view .metric-item:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-metrics.in-view .metric-item:nth-child(3) {
    animation-delay: 0.2s;
}

.trust-metrics.in-view .metric-item:nth-child(5) {
    animation-delay: 0.3s;
}
