/* Unified Style: Customers Section (Light Mode to Match) */
.customers-section {
    padding: 3rem 0;
    background: var(--surface-50); /* Slightly off-white to differentiate */
    color: var(--text-main);
    position: relative;
    border-bottom: 1px solid var(--surface-200);
}

.customers-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.customers-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-subtle);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.customers-section .section-badge i {
    font-size: 0.875rem;
}

.customers-section .section-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.customers-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.partner-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--surface-200);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-300);
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.partner-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.partner-icon {
    font-size: 1.2rem;
}

.partner-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.partner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
    font-weight: 400;
}

.partner-stats {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    background: var(--primary-50);
    border-radius: 100px;
    width: fit-content;
}

.partners-cta {
    text-align: center;
    margin-top: 4rem;
}

.partner-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2.5rem;
    background: var(--primary-600);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.partner-button:hover {
    transform: translateY(-2px);
    background: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .customers-section {
        padding: 2rem 0;
    }
}
