
        /* Homepage Specific Adjustments - Clean Light Theme */

        /* Hero Grid Layout (extends .hero-section from main.css) */
        .hero-section {
            min-height: auto !important;
            /* Force-collapse to content */
            padding: var(--section-padding-y) 0 !important;
            /* Remove section padding, use grid for internal spacing */
            margin-bottom: 0 !important;
            display: block !important;
            /* Ensure block layout for height normalization */
        }

        /* Ensure Story Section starts immediately */
        .story-scroll-section {
            margin-top: 0;
            position: relative;
            z-index: 20;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: var(--space-16);
            align-items: center;
            padding-top: var(--space-20);
            /* Maintain top spacing */
            padding-bottom: 0 !important;
            /* Normalize bottom to content edge */
        }

        .hero-video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: rgba(0, 0, 0, 0.3);
            border-radius: var(--radius-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
        }

        .hero-video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(11, 171, 228, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
        }

        .play-button {
            width: var(--space-16);
            height: var(--space-16);
            background: var(--brand-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-h5);
            color: white;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        /* Hero title extends main.css hero-content styles */
        .hero-title {
            font-size: clamp(var(--text-h3), 5vw, var(--text-h1));
            line-height: var(--leading-h1);
            margin-bottom: var(--gap-heading-subtitle);
            font-weight: var(--font-weight-bold);
        }

        .hero-title span {
            color: var(--brand-primary);
        }

        /* 2. Partner Selector - Grid Layout Only */
        /* Component styles moved to main.css */
        .selector-section {
            padding: var(--section-padding-y) 0;
            background: var(--bg-surface);
        }

        .selector-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-8);
        }

        /* 3. Services Grid Layout */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--card-gap);
            margin-top: var(--space-8);
        }

        /* Responsive Fixes for Index */
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
                text-align: center;
            }

            .hero-content {
                text-align: center;
            }

            .hero-desc {
                margin: 0 auto var(--space-10);
            }

            .selector-grid,
            .services-grid {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {

            .selector-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 4. Scroll Storytelling - Mark Woodland Inspired */
        .story-section {
            padding: 0;
            background: white;
            position: relative;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .story-visual-container {
            position: sticky;
            top: var(--header-height);
            height: calc(100vh - var(--header-height));
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-surface);
            overflow: hidden;
            z-index: 5;
        }

        .visual-scene {
            position: absolute;
            width: 80%;
            height: 60%;
            background: white;
            border-radius: var(--space-10);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            opacity: 0;
            transform: translateY(var(--space-8)) scale(0.95);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 var(--space-10) 100px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-subtle);
        }

        .visual-scene.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .hybrid-visual-placeholder {
            text-align: center;
            padding: var(--space-10);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .scene-label {
            display: block;
            font-size: var(--text-h6);
            font-weight: 800;
            color: var(--brand-primary);
            margin-bottom: var(--space-sm);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .scene-plan {
            font-size: 0.875rem;
            color: var(--text-secondary);
            max-width: 280px;
            line-height: 1.6;
            margin: 0;
        }

        .story-scroll-area {
            padding: 10vh 0;
        }

        .story-scene-text {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 10% 0 5%;
            opacity: 0.2;
            transition: opacity 0.4s ease;
        }

        .story-scene-text.active {
            opacity: 1;
        }

        .story-scene-text h3 {
            font-size: var(--text-h3);
            margin-bottom: var(--space-2);
            color: var(--brand-dark);
            line-height: var(--leading-h3);
        }

        .story-scene-text p {
            font-size: var(--text-base);
            color: var(--text-secondary);
            max-width: 480px;
            line-height: var(--leading-base);
            margin-bottom: var(--space-md);
        }

        .scene-tag {
            display: inline-block;
            background: rgba(11, 171, 228, 0.1);
            color: var(--brand-primary);
            padding: var(--space-1) var(--space-3);
            border-radius: var(--radius-input);
            font-size: var(--text-caption);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @media (max-width: 992px) {
            .story-grid {
                grid-template-columns: 1fr;
            }

            .story-visual-container {
                height: 40vh;
                position: relative;
                top: 0;
            }

            .story-scene-text {
                min-height: 50vh;
                padding: var(--space-16) var(--space-8);
                text-align: center;
                align-items: center;
            }

            .visual-scene {
                width: 60%;
                height: 60%;
                font-size: 4rem;
            }
        }

        /* 5. Business Models Carousel */
        .carousel-section {
            padding: var(--section-padding-y) 0;
            background: var(--brand-dark);
            color: white;
            overflow: hidden;
        }

        .carousel-container {
            display: flex;
            gap: var(--space-lg);
            overflow-x: auto;
            padding: var(--space-lg) 0 var(--space-16);
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .carousel-container::-webkit-scrollbar {
            display: none;
        }

        /* 8. Final CTA - Clean Light Style */
        .final-cta-section {
            padding: var(--section-padding-y) 0;
            background: white;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }







        /* Model Tile Styles have been moved to main.css for global reuse */

        .model-benefits {
            list-style: none;
            padding: 0;
            margin: var(--space-lg) 0;
            text-align: left;
        }

        .model-benefits li {
            font-size: 0.875rem;
            margin-bottom: var(--space-3);
            padding-left: var(--space-6);
            position: relative;
            opacity: 0.8;
        }

        .model-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--brand-primary);
            font-weight: 800;
        }

        /* 6. Infrastructure Impact - Institutional Style */
        .impact-section {
            padding: var(--section-padding-y) 0;
            background: var(--bg-surface);
            overflow: hidden;
        }

        .infrastructure-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-32);
            align-items: flex-start;
        }

        .infra-content {
            max-width: 520px;
        }

        .infra-content .overline {
            display: block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--brand-primary);
            text-transform: uppercase;
            margin-bottom: var(--space-lg);
        }





        .infra-metrics {
            display: flex;
            flex-direction: column;
            gap: var(--space-2xl);
        }

        .infra-metric-item {
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: var(--space-10);
        }

        .infra-metric-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .infra-number {
            display: block;
            font-size: clamp(56px, 6vw, 72px);
            font-weight: 800;
            line-height: 1;
            color: var(--brand-dark);
            letter-spacing: -0.03em;
            margin-bottom: var(--space-3);
        }

        .infra-label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
        }

        @media (max-width: 992px) {
            .infrastructure-grid {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }

            .infra-content {
                max-width: 100%;
            }
        }

        /* 7. Trust & Compliance */
        .trust-section {
            padding: var(--section-padding-y) 0;
            background: white;
            border-top: 1px solid var(--border-subtle);
        }

        .trust-grid-corporate {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-xl);
            opacity: 0.7;
        }

        .trust-logo {
            text-align: center;
            font-weight: 800;
            color: var(--brand-dark);
            font-size: 1.5rem;
        }

        @media (max-width: 992px) {

            .hero-grid,
            .story-grid,
            .selector-grid {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

            .hero-content {
                text-align: center;
            }



            .model-tile {
                min-width: 300px;
            }
        }

        /* Hero Alignment Fixes */
        .hero-section {
            height: auto;
            padding-top: var(--space-10);
            padding-bottom: var(--space-10);
            display: flex;
            align-items: center;
            overflow: visible;
            position: relative;
        }

        .hero-slide {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: var(--space-16);
            height: 100%;
            overflow: visible;
        }

        .hero-content {
            max-width: 560px;
        }

        .hero-content h1 {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #ffffff;
            margin-bottom: var(--space-5);
        }

        .hero-content p {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: var(--space-lg);
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: auto;
            overflow: visible;
        }

        .hero-visual img {
            width: 100%;
            max-width: 520px;
            border-radius: 16px;
            z-index: 2;
            position: relative;
        }

        .hero-floating-card {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: var(--space-3) var(--space-4);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            font-size: 14px;
            animation: floatY 8s ease-in-out infinite;
            z-index: 3;
            color: #1b3d5c;
            display: flex;
            flex-direction: column;
            gap: var(--space-1);
        }

        @keyframes floatY {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .top-card {
            top: var(--space-10);
            right: var(--space-3);
        }

        .bottom-card {
            bottom: var(--space-10);
            right: var(--space-8);
        }

        .left-card {
            left: calc(-1 * var(--space-10));
            top: calc(4 * var(--space-10));
        }

        .slide-4 .hero-floating-card.top-card {
            top: var(--space-5);
            right: calc(-1 * var(--space-5));
        }

        .slide-4 .hero-floating-card.bottom-card {
            bottom: var(--space-5);
            right: -10px;
        }

        .slide-4 .hero-floating-card.left-card {
            left: -70px;
            top: 200px;
        }

        .slide-4 .hero-visual img {
            position: relative;
            z-index: 2;
        }

        .slide-4 .hero-floating-card {
            z-index: 3;
            max-width: 160px;
            animation: floatY 10s ease-in-out infinite;
        }

        .slide-4 .hero-visual {
            padding-right: var(--space-10);
            padding-bottom: var(--space-5);
        }

        .hero-arrow {
            top: 50%;
            transform: translateY(-50%);
        }

        .hero-dots {
            bottom: var(--space-5);
        }

        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                padding-top: var(--space-16);
                padding-bottom: var(--space-10);
            }

            .hero-slide {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-floating-card {
                display: none;
            }
        }

        /* -----------------------------------------------------
           Findi Group Intro Section - Hero Style Dark Overlay 
           ----------------------------------------------------- */
        .findi-group-section {
            padding: var(--section-padding-y) 0;
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0d1a29 100%);
            color: white;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Ambient brand red glow as accent */
        .findi-group-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 63, 51, 0.08) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
        }

        /* Ambient primary blue glow */
        .findi-group-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(11, 171, 228, 0.05) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
        }

        .findi-group-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: var(--space-16);
            align-items: center;
        }

        .findi-group-content {
            position: relative;
            z-index: 2;
        }

        .findi-group-content .overline {
            color: var(--brand-primary);
            margin-bottom: var(--space-4);
            display: block;
            font-weight: 800;
        }

        .findi-group-content h2 {
            color: white;
            font-size: clamp(2rem, 5vw, 2.75rem);
            line-height: 1.2;
            margin-bottom: var(--space-6);
        }

        .findi-group-content p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: var(--space-10);
            font-size: 1.125rem;
            max-width: 600px;
        }

        .findi-group-visual {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
        }

        .findi-group-visual img {
            width: 100%;
            max-width: 540px;
            aspect-ratio: 16/10;
            /* Changed: Professional widescreen aspect ratio */
            object-fit: cover;
            /* Changed: Ensures no distortion regardless of image size */
            border-radius: var(--radius-card);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(212, 63, 51, 0.2);
            /* Added: Subtle red accent border */
            transition: transform 0.6s var(--ease-out-smooth);
        }

        .findi-group-section:hover .findi-group-visual img {
            transform: scale(1.02) translateY(-10px);
        }

        .findi-group-section .btn-primary {
            border: 2px solid var(--brand-red);
            background: transparent;
            color: white;
        }

        .findi-group-section .btn-primary:hover {
            background: var(--brand-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 63, 51, 0.2);
        }

        @media (max-width: 992px) {
            .findi-group-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: var(--space-12);
            }

            .findi-group-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .findi-group-content p {
                margin-left: auto;
                margin-right: auto;
            }
        }
    

                .dot.active {
                    background: #ffffff !important;
                    width: 24px !important;
                    border-radius: 10px !important;
                    transition: all 0.3s ease;
                }
            

                .hero-service-strip .container::-webkit-scrollbar {
                    display: none;
                }

                /* Hero Alignment Fixes */
                .hero-section {
                    min-height: auto;
                    padding-top: var(--space-10);
                    padding-bottom: var(--space-10);
                    display: flex;
                    align-items: center;
                    overflow: visible;
                    position: relative;
                }

                .hero-slide {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    align-items: center;
                    gap: var(--space-16);
                    height: 100%;
                    overflow: visible;
                }

                .hero-content {
                    max-width: 560px;
                }

                .hero-content h1 {
                    font-size: 52px;
                    font-weight: 700;
                    line-height: 1.1;
                    letter-spacing: -0.02em;
                    color: #ffffff;
                    margin-bottom: var(--space-5);
                }

                .hero-content p {
                    font-size: 18px;
                    line-height: 1.6;
                    color: rgba(255, 255, 255, 0.85);
                    margin-bottom: var(--space-lg);
                }

                .hero-visual {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    min-height: auto;
                    overflow: visible;
                }

                .hero-visual img {
                    width: 100%;
                    max-width: 520px;
                    border-radius: 16px;
                    z-index: 2;
                    position: relative;
                }

                .hero-floating-card {
                    position: absolute;
                    background: white;
                    border-radius: 12px;
                    padding: var(--space-3) var(--space-4);
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                    font-size: 14px;
                    animation: floatY 8s ease-in-out infinite;
                    z-index: 3;
                    color: #1b3d5c;
                    display: flex;
                    flex-direction: column;
                    gap: var(--space-1);
                }

                @keyframes floatY {
                    0% {
                        transform: translateY(0px);
                    }

                    50% {
                        transform: translateY(-10px);
                    }

                    100% {
                        transform: translateY(0px);
                    }
                }

                .top-card {
                    top: var(--space-10);
                    right: var(--space-3);
                }

                .bottom-card {
                    bottom: var(--space-10);
                    right: var(--space-8);
                }

                .left-card {
                    left: calc(-1 * var(--space-10));
                    top: calc(4 * var(--space-10));
                }

                .hero-arrow {
                    top: 50%;
                    transform: translateY(-50%);
                }

                .hero-dots {
                    bottom: var(--space-5);
                }

                @media (max-width: 768px) {
                    .hero-section {
                        min-height: auto;
                        padding-top: var(--space-16);
                        padding-bottom: var(--space-10);
                    }

                    .hero-slide {
                        grid-template-columns: 1fr;
                        text-align: center;
                    }

                    .hero-floating-card {
                        display: none;
                    }
                }
            

                    .merchant-steps-grid {
                        display: grid;
                        grid-template-columns: repeat(4, 1fr);
                        gap: var(--space-lg);
                        margin-top: var(--space-2xl);
                    }

                    .merchant-step-card {
                        background: white;
                        border: 1px solid var(--border-subtle);
                        border-radius: var(--radius-card);
                        padding: var(--space-10) var(--space-lg);
                        text-align: center;
                        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                    }

                    .merchant-step-card:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
                    }

                    .merchant-step-icon {
                        width: 72px;
                        height: 72px;
                        background: rgba(11, 171, 228, 0.1);
                        color: var(--brand-primary);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: var(--space-md);
                    }

                    .merchant-step-card h3 {
                        font-size: 1.25rem;
                        color: var(--brand-dark);
                        margin-bottom: var(--space-sm);
                    }

                    .merchant-step-card p {
                        font-size: 1rem;
                        color: var(--text-secondary);
                        line-height: 1.6;
                        margin: 0;
                    }

                    .merchant-step-number {
                        display: inline-block;
                        background: var(--brand-dark);
                        color: white;
                        font-size: 0.75rem;
                        font-weight: bold;
                        padding: var(--space-1) var(--space-3);
                        border-radius: 12px;
                        margin-bottom: var(--space-md);
                        text-transform: uppercase;
                        letter-spacing: 0.05em;
                    }

                    @media (max-width: 992px) {
                        .merchant-steps-grid {
                            grid-template-columns: repeat(2, 1fr);
                        }
                    }

                    @media (max-width: 768px) {
                        .merchant-steps-grid {
                            grid-template-columns: 1fr;
                        }
                    }

                    /* Hero Alignment Fixes */
                    .hero-section {
                        height: auto;
                        padding-top: var(--space-10);
                        padding-bottom: var(--space-10);
                        display: flex;
                        align-items: center;
                        overflow: visible;
                        position: relative;
                    }

                    .hero-slide {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        align-items: center;
                        gap: var(--space-16);
                        height: 100%;
                        overflow: visible;
                    }

                    .hero-content {
                        max-width: 560px;
                    }

                    .hero-content h1 {
                        font-size: 52px;
                        font-weight: 700;
                        line-height: 1.1;
                        letter-spacing: -0.02em;
                        color: #ffffff;
                        margin-bottom: var(--space-5);
                    }

                    .hero-content p {
                        font-size: 18px;
                        line-height: 1.6;
                        color: rgba(255, 255, 255, 0.85);
                        margin-bottom: var(--space-lg);
                    }

                    .hero-visual {
                        position: relative;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        min-height: auto;
                        overflow: visible;
                    }

                    .hero-visual img {
                        width: 100%;
                        max-width: 520px;
                        border-radius: 16px;
                        z-index: 2;
                        position: relative;
                    }

                    .hero-floating-card {
                        position: absolute;
                        background: white;
                        border-radius: 12px;
                        padding: var(--space-3) var(--space-4);
                        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                        font-size: 14px;
                        animation: floatY 8s ease-in-out infinite;
                        z-index: 3;
                        color: #1b3d5c;
                        display: flex;
                        flex-direction: column;
                        gap: var(--space-1);
                    }

                    @keyframes floatY {
                        0% {
                            transform: translateY(0px);
                        }

                        50% {
                            transform: translateY(-10px);
                        }

                        100% {
                            transform: translateY(0px);
                        }
                    }

                    .top-card {
                        top: var(--space-10);
                        right: var(--space-3);
                    }

                    .bottom-card {
                        bottom: var(--space-10);
                        right: var(--space-8);
                    }

                    .left-card {
                        left: calc(-1 * var(--space-10));
                        top: calc(4 * var(--space-10));
                    }

                    .hero-arrow {
                        top: 50%;
                        transform: translateY(-50%);
                    }

                    .hero-dots {
                        bottom: var(--space-5);
                    }

                    @media (max-width: 768px) {
                        .hero-section {
                            height: auto;
                            padding-top: var(--space-16);
                            padding-bottom: var(--space-10);
                        }

                        .hero-slide {
                            grid-template-columns: 1fr;
                            text-align: center;
                        }

                        .hero-floating-card {
                            display: none;
                        }
                    }
                

                        .partner-marquee-wrapper {
                            overflow: hidden;
                            width: 100%;
                            position: relative;
                            padding: 1.5rem 0;
                        }

                        .partner-marquee-wrapper::before,
                        .partner-marquee-wrapper::after {
                            content: '';
                            position: absolute;
                            top: 0;
                            width: 80px;
                            height: 100%;
                            z-index: 2;
                            pointer-events: none;
                        }

                        .partner-marquee-wrapper::before {
                            left: 0;
                            background: linear-gradient(to right, white, transparent);
                        }

                        .partner-marquee-wrapper::after {
                            right: 0;
                            background: linear-gradient(to left, white, transparent);
                        }

                        .partner-marquee-track {
                            display: flex;
                            gap: var(--space-2xl);
                            align-items: center;
                            animation: partnerScroll 35s linear infinite;
                            width: max-content;
                        }

                        .partner-marquee-wrapper:hover .partner-marquee-track {
                            animation-play-state: paused;
                        }

                        @keyframes partnerScroll {
                            0% {
                                transform: translateX(0);
                            }

                            100% {
                                transform: translateX(-50%);
                            }
                        }

                        .partner-marquee-track img {
                            height: 48px;
                            width: auto;
                            object-fit: contain;
                            filter: none;
                            /* Changed: Showing original color by default */
                            opacity: 1;
                            /* Changed: Full opacity by default */
                            transition: all 0.3s ease;
                            flex-shrink: 0;
                        }

                        .partner-marquee-track img:hover {
                            transform: scale(1.08);
                            /* Required scale effect */
                            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
                            /* Optional shadow on hover */
                        }

                        @media (max-width: 768px) {
                            .partner-marquee-track img {
                                height: 36px;
                            }

                            .partner-marquee-track {
                                gap: var(--space-10);
                            }
                        }

                        /* Hero Alignment Fixes */
                        .hero-section {
                            height: auto;
                            padding-top: var(--space-10);
                            padding-bottom: var(--space-10);
                            display: flex;
                            align-items: center;
                            overflow: visible;
                            position: relative;
                        }

                        .hero-slide {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                            align-items: center;
                            gap: var(--space-16);
                            height: 100%;
                            overflow: visible;
                        }

                        .hero-content {
                            max-width: 560px;
                        }

                        .hero-content h1 {
                            font-size: 52px;
                            font-weight: 700;
                            line-height: 1.1;
                            letter-spacing: -0.02em;
                            color: #ffffff;
                            margin-bottom: var(--space-5);
                        }

                        .hero-content p {
                            font-size: 18px;
                            line-height: 1.6;
                            color: rgba(255, 255, 255, 0.85);
                            margin-bottom: 28px;
                        }

                        .hero-visual {
                            position: relative;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            min-height: auto;
                            overflow: visible;
                        }

                        .hero-visual img {
                            width: 100%;
                            max-width: 520px;
                            border-radius: 16px;
                            z-index: 2;
                            position: relative;
                        }

                        .hero-floating-card {
                            position: absolute;
                            background: white;
                            border-radius: 12px;
                            padding: var(--space-3) var(--space-4);
                            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                            font-size: 14px;
                            animation: floatY 8s ease-in-out infinite;
                            z-index: 3;
                            color: #1b3d5c;
                            display: flex;
                            flex-direction: column;
                            gap: var(--space-1);
                        }

                        @keyframes floatY {
                            0% {
                                transform: translateY(0px);
                            }

                            50% {
                                transform: translateY(-10px);
                            }

                            100% {
                                transform: translateY(0px);
                            }
                        }

                        .top-card {
                            top: var(--space-10);
                            right: var(--space-3);
                        }

                        .bottom-card {
                            bottom: var(--space-10);
                            right: var(--space-8);
                        }

                        .left-card {
                            left: calc(-1 * var(--space-10));
                            top: calc(4 * var(--space-10));
                        }

                        .hero-arrow {
                            top: 50%;
                            transform: translateY(-50%);
                        }

                        .hero-dots {
                            bottom: var(--space-5);
                        }

                        @media (max-width: 768px) {
                            .hero-section {
                                height: auto;
                                padding-top: var(--space-16);
                                padding-bottom: var(--space-10);
                            }

                            .hero-slide {
                                grid-template-columns: 1fr;
                                text-align: center;
                            }

                            .hero-floating-card {
                                display: none;
                            }
                        }
                    