/* Partners Page Styles */

/* Hero Section */
.partners-hero {
    text-align: center;
    padding: 4rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.partners-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.partners-hero__eyebrow {
    color: #818cf8;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.partners-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.partners-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Partners Section */
.partners-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

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

.section-pill {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    gap: 1.5rem;
}

.partners-grid--tech {
    grid-template-columns: repeat(2, 1fr);
}

.partners-grid--tech .partner-card:nth-child(1),
.partners-grid--tech .partner-card:nth-child(2) {
    grid-column: span 1;
}

/* Partner Card */
.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.partner-card--featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(99, 102, 241, 0.15);
    padding: 2rem;
}

.partner-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo img {
    max-width: 56px;
    max-height: 56px;
    object-fit: contain;
}

.partner-logo--small {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.6);
}

.partner-logo--small svg {
    width: 32px;
    height: 32px;
}

.partner-info {
    flex: 1;
}

.partner-info h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.partner-type {
    color: #818cf8;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.partner-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.partner-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partner-services span {
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* CTA Section */
.partners-cta {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.cta-content {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.benefit svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.btn-partner {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-partner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .partners-hero h1 {
        font-size: 2.25rem;
    }

    .partners-grid--tech {
        grid-template-columns: 1fr;
    }

    .partner-card--featured {
        padding: 1.5rem;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 500px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .partner-services {
        justify-content: center;
    }
}
