/* Partners Page Styles - Victory Engine Aesthetic */

/* Hero Section */
.partners-hero {
    background: linear-gradient(135deg, #0F1629 0%, #1a2332 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-gold {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #C89D5C, transparent);
    top: -100px;
    right: 10%;
}

.orb-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3B82F6, transparent);
    bottom: -150px;
    left: 5%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, 20px); }
    50% { transform: translate(-20px, 40px); }
    75% { transform: translate(20px, -20px); }
}

.partners-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 157, 92, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-highlight {
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-partners-primary,
.btn-partners-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-partners-primary {
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    color: white;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.4);
}

.btn-partners-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 157, 92, 0.6);
}

.btn-partners-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-partners-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(200, 157, 92, 0.5);
}

/* Trusted By Section */
.trusted-by-section {
    padding: 3rem 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.section-title-sm {
    text-align: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-weight: 600;
}

.trusted-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-logo-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 30px rgba(200, 157, 92, 0.2);
    transform: translateY(-4px);
}

.partner-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.partner-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Value Proposition Section */
.value-prop-section {
    padding: 6rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--muted);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-gradient {
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.comparison-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

.ai-card {
    border-color: rgba(59, 130, 246, 0.3);
}

.human-card {
    border-color: rgba(200, 157, 92, 0.5);
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.05), var(--card));
}

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

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.icon-lg {
    width: 40px;
    height: 40px;
}

.ai-card .icon-lg {
    color: #3B82F6;
}

.human-card .icon-lg {
    color: var(--gold-primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-card .feature-list i {
    color: #3B82F6;
}

.human-card .feature-list i {
    color: var(--gold-primary);
}

.solution-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.1), rgba(200, 157, 92, 0.05));
    border: 2px solid rgba(200, 157, 92, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
}

.icon-xl {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.text-gold {
    color: var(--gold-primary);
}

.banner-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 0.5rem 0;
}

.banner-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Partnership Models Section */
.partnership-models-section {
    padding: 6rem 0;
    background: var(--muted);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.model-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 40px rgba(200, 157, 92, 0.2);
}

.model-card.featured {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.05), var(--card));
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.model-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.1), rgba(200, 157, 92, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.model-icon i {
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
}

.model-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.model-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.model-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.model-features i {
    width: 16px;
    height: 16px;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.model-ideal {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.model-ideal strong {
    color: var(--foreground);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(200, 157, 92, 0.15);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.1), rgba(200, 157, 92, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon i {
    width: 28px;
    height: 28px;
    color: var(--gold-primary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    background: var(--muted);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

.use-case-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.1), rgba(200, 157, 92, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.use-case-icon i {
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.use-case-scenario,
.use-case-solution {
    margin-bottom: 1.5rem;
}

.scenario-label,
.solution-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.use-case-scenario p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    font-style: italic;
    margin: 0;
}

.use-case-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-solution li {
    font-size: 0.9375rem;
    color: var(--foreground);
    padding: 0.375rem 0 0.375rem 1.5rem;
    position: relative;
}

.use-case-solution li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

.use-case-results {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.result-stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Case Studies Section */
.case-studies-section {
    padding: 6rem 0;
    background: var(--background);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.coming-soon-card {
    background: var(--card);
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    opacity: 1;
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--muted);
    color: var(--muted-foreground);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-preview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(200, 157, 92, 0.1), rgba(200, 157, 92, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.case-preview-icon i {
    width: 40px;
    height: 40px;
    color: var(--gold-primary);
}

.case-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.case-preview {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-metrics-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--foreground);
    font-weight: 600;
}

.metric-icon {
    display: flex;
    align-items: center;
}

.metric-icon i {
    width: 16px;
    height: 16px;
    color: var(--gold-primary);
}

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

.notify-cta p {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--card);
    border: 2px solid var(--border);
    color: var(--foreground);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-notify:hover {
    border-color: var(--gold-primary);
    background: rgba(200, 157, 92, 0.05);
    transform: translateY(-2px);
}

.btn-notify i {
    width: 20px;
    height: 20px;
}

/* Integration Process Section */
.integration-process-section {
    padding: 6rem 0;
    background: var(--background);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.step-content > p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-deliverables li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--foreground);
}

.step-deliverables i {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0F1629, #1a2332);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom left, rgba(200, 157, 92, 0.1), transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-final-primary,
.btn-final-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-primary {
    background: linear-gradient(135deg, #C89D5C, #E6C98F);
    color: white;
    box-shadow: 0 4px 20px rgba(200, 157, 92, 0.4);
}

.btn-final-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 157, 92, 0.6);
}

.btn-final-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-final-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(200, 157, 92, 0.5);
}

.final-cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.trust-item i {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .partners-hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-results {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta-container {
        flex-direction: column;
    }
    
    .btn-partners-primary,
    .btn-partners-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trusted-partners-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-trust {
        flex-direction: column;
        gap: 1rem;
    }
}
