/* ========== FINANCING HERO SECTION ========== */
.financing-hero-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    background-size: auto, 300px 300px;
    min-height: 40vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid rgba(0, 176, 176, 0.4);
    overflow: hidden;
}

.financing-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 800px 400px at 50% 50%, 
        rgba(0, 176, 176, 0.15) 0%, 
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.financing-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 212, 0.08) 100px,
            rgba(0, 212, 212, 0.08) 101px
        );
    z-index: 1;
    pointer-events: none;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.financing-hero-section .hero-viewport {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.financing-hero-section .hero-content {
    max-width: 900px;
    text-align: center;
}

.financing-hero-section .hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

.financing-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin: 0;
}

/* ========== FINANCING SECTION ========== */
.financing-section {
    background: #f5f7fa;
    padding: 80px 0 100px;
}

.financing-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
}

/* ========== FEATURED PARTNER ========== */
.featured-partner {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.partner-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.partner-logo-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 100%;
    height: auto;
}

.partner-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00b0b0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.partner-name {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.partner-description {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 32px;
}

.partner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #495057;
    font-weight: 600;
}

.feature-item svg {
    color: #00b0b0;
    flex-shrink: 0;
}

.partner-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.partner-contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 176, 176, 0.15);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00b0b0, #00d4d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ========== FINANCING FAQ ========== */
.financing-faq {
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.faq-answer {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #00b0b0, #00d4d4);
    padding: 64px;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-section .btn {
    background: #ffffff;
    color: #00b0b0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .partner-content {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .financing-section {
        padding: 60px 0 80px;
    }
    
    .featured-partner {
        padding: 40px 28px;
    }
    
    .partner-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .partner-features,
    .steps-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-contact {
        flex-direction: column;
    }
    
    .partner-contact .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-section {
        padding: 48px 32px;
    }
}
