/* Generated from legacy/financing.html by scripts/build-legacy-styles.mjs. */
/* Critical Hero Section CSS for LCP optimization */
        .financing-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-desktop.webp');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            margin-top: 88px;
            text-align: center;
        }

        /* Fallback for browsers that don't support WebP */
        .no-webp .financing-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-desktop.jpg');
        }

        /* Responsive hero backgrounds */
        @media (max-width: 1366px) {
            .financing-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-tablet.webp');
            }
            .no-webp .financing-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-tablet.jpg');
            }
        }

        @media (max-width: 768px) {
            .financing-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-mobile.webp');
                padding: 100px 0 60px;
            }
            .no-webp .financing-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/backgrounds/hero-background-mobile.jpg');
            }
        }

/* Page-specific styles */

        /* Hero Section */
        .financing-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .financing-amounts {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .amount-highlight {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            padding: 20px 30px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-red);
            margin-bottom: 5px;
        }

        .label {
            font-size: 16px;
            opacity: 0.9;
        }

        .amount-separator {
            font-size: 32px;
            font-weight: 700;
            opacity: 0.7;
        }

        /* Benefits Section */
        .financing-benefits {
            padding: 80px 0;
            background: white;
        }

        .financing-benefits h2 {
            text-align: center;
            color: var(--gray-dark);
            font-size: 36px;
            margin-bottom: 30px;
        }

        .section-intro {
            text-align: center;
            color: var(--gray-medium);
            font-size: 18px;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 50px;
        }

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

        .benefit-card {
            background: var(--gray-light);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition-normal);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--brand-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .benefit-icon i {
            font-size: 32px;
            color: white;
        }

        .benefit-card h3 {
            color: var(--gray-dark);
            margin-bottom: 15px;
            font-size: 20px;
        }

        .benefit-card p {
            color: var(--gray-medium);
            line-height: 1.6;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 80px 0;
            background: var(--gray-light);
        }

        .how-it-works h2 {
            text-align: center;
            color: var(--gray-dark);
            font-size: 36px;
            margin-bottom: 50px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .step {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            position: relative;
            box-shadow: var(--shadow-light);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-red);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
        }

        .step h3 {
            color: var(--gray-dark);
            margin: 20px 0 15px;
            font-size: 20px;
        }

        .step p {
            color: var(--gray-medium);
            line-height: 1.6;
        }

        /* CTA Section */
        .financing-cta {
            padding: 80px 0;
            background: var(--brand-red);
            color: white;
            text-align: center;
        }

        .financing-cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .financing-cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .cta-button {
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition-normal);
        }

        .cta-button.primary {
            background: white;
            color: var(--brand-red);
        }

        .cta-button.primary:hover {
            background: var(--gray-light);
            transform: translateY(-2px);
            text-decoration: none;
        }

        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--brand-red);
            text-decoration: none;
        }

        .contact-note {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-note p {
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0.9;
            margin: 0;
            font-size: 16px;
        }

        .contact-note i {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .financing-hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .financing-amounts {
                flex-direction: column;
                gap: 20px;
            }

            .amount-separator {
                display: none;
            }

            .amount {
                font-size: 28px;
            }

            .financing-benefits,
            .how-it-works,
            .financing-cta {
                padding: 60px 0;
            }

            .financing-benefits h2,
            .how-it-works h2,
            .financing-cta h2 {
                font-size: 28px;
            }

            .benefits-grid,
            .process-steps {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }

            .contact-note {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .amount-highlight {
                padding: 15px 20px;
            }

            .benefit-card,
            .step {
                padding: 25px 20px;
            }
        }
