/* Providers Section - Marquee or Clean Grid */
.providers-section {
    padding: 2.5rem 0;
    background: var(--surface-50);
    border-top: 1px solid var(--surface-200);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.provider-item {
    background: white;
    border: 1px solid var(--surface-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.provider-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.provider-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.provider-logo svg {
    width: 100%;
    height: 100%;
}

.provider-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.provider-item:hover .provider-name {
    color: var(--primary-600);
}

.providers-cta {
    text-align: center;
    margin-top: 3rem;
}

.provider-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-600);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    background: var(--primary-50);
    transition: all 0.3s ease;
}

.provider-button:hover {
    background: var(--primary-100);
    gap: 1rem;
}