        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
            overflow-x: hidden;
        }

        /* ============================================ */
        /* PREMIUM HERO SECTION - LOAN PARTNER          */
        /* GLASSMORPHISM + APPLE TOUCH ANIMATIONS       */
        /* FULLY RESPONSIVE                             */
        /* ============================================ */

        .hero-partner-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 4px !important;
            
        }

        /* Animated Background Orbs */
        .hero-bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: floatOrb 20s infinite ease-in-out;
            pointer-events: none;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 113, 227, 0.3), rgba(88, 86, 214, 0.1));
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.25), rgba(255, 149, 0, 0.08));
            bottom: -150px;
            right: -100px;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(52, 199, 89, 0.2), rgba(52, 199, 89, 0.05));
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
            33% { transform: translate(30px, -30px) scale(1.1); opacity: 0.6; }
            66% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.3; }
        }

        /* Hero Container */
        .hero-partner-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-partner-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* ========== LEFT CONTENT ========== */
        .hero-partner-content {
            animation: fadeInLeft 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .premium-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 113, 227, 0.12);
            backdrop-filter: blur(10px);
            padding: 8px 18px;
            border-radius: 40px;
            margin-bottom: 24px;
            border: 1px solid rgba(0, 113, 227, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.2); }
            50% { box-shadow: 0 0 0 8px rgba(0, 113, 227, 0); }
        }

        .premium-badge i {
            font-size: 14px;
            color: #0071e3;
        }

        .premium-badge span {
            font-size: 12px;
            font-weight: 600;
            color: #0071e3;
            letter-spacing: 0.5px;
        }

        .hero-partner-title h3 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1d1d1f 0%, #0071e3 50%, #5856d6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-partner-highlight {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .hero-partner-desc {
            font-size: clamp(1rem, 2vw, 1.125rem);
            color: #86868b;
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 500px;
        }

        /* Feature List */
        .partner-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-3px);
            background: white;
            border-color: rgba(0, 113, 227, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #0071e3, #5856d6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon i {
            font-size: 14px;
            color: white;
        }

        .feature-text {
            font-size: 13px;
            font-weight: 600;
            color: #1d1d1f;
        }

        /* CTA Buttons */
        .hero-partner-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .btn-primary-partner {
            background: linear-gradient(135deg, #0071e3, #5856d6);
            color: white;
            border: none;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(0, 113, 227, 0.3);
        }

        .btn-primary-partner::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .btn-primary-partner:active::before {
            width: 200px;
            height: 200px;
        }

        .btn-primary-partner:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 30px rgba(0, 113, 227, 0.4);
        }

        .btn-primary-partner i {
            transition: transform 0.3s ease;
        }

        .btn-primary-partner:hover i {
            transform: translateX(5px);
        }

        .btn-outline-partner {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            color: #0071e3;
            border: 1.5px solid rgba(0, 113, 227, 0.3);
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .btn-outline-partner:hover {
            background: #0071e3;
            color: white;
            transform: translateY(-3px);
            border-color: #0071e3;
            box-shadow: 0 8px 20px rgba(0, 113, 227, 0.2);
        }

        /* Stats */
        .partner-stats {
            display: flex;
            gap: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: #0071e3;
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 12px;
            color: #86868b;
            font-weight: 500;
        }

        /* ========== RIGHT CONTENT - HANDSHAKE IMAGE ========== */
        .hero-partner-image {
            position: relative;
            animation: fadeInRight 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .image-glass-container {
            position: relative;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(20px);
            border-radius: 48px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transition: all 0.4s ease;
        }

        .image-glass-container:hover {
            transform: scale(1.02);
            box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
        }

        .handshake-image {
            width: 100%;
            height: auto;
            border-radius: 36px;
            display: block;
            transition: all 0.4s ease;
        }

        /* Floating Elements */
        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: float 3s infinite ease-in-out;
            z-index: 5;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card-1 {
            top: 10%;
            right: -20px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 15%;
            left: -30px;
            animation-delay: 1s;
        }

        .floating-card-3 {
            top: 40%;
            left: -20px;
            animation-delay: 0.5s;
        }

        .floating-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #34c759, #28a745);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .floating-icon i {
            font-size: 20px;
            color: white;
        }

        .floating-text {
            font-size: 12px;
            font-weight: 600;
            color: #1d1d1f;
        }

        .floating-subtext {
            font-size: 10px;
            color: #86868b;
        }

        /* Trust Badge */
        .trust-badges {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: #0071e3;
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            z-index: 6;
        }

        .trust-badges i {
            font-size: 28px;
            color: #f59e0b;
        }

        .trust-badges div {
            text-align: left;
        }

        .trust-badges strong {
            font-size: 14px;
            color: #ffffff;
        }

        .trust-badges p {
            font-size: 10px;
            color: #f6868b;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-partner-grid {
                gap: 40px;
            }
            
            .floating-card-1 {
                right: 0;
            }
            
            .floating-card-2, .floating-card-3 {
                left: 0;
            }
        }

        @media (max-width: 900px) {
            .hero-partner-section {
                padding: 10px 4px !important;
            }
            
            .hero-partner-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-partner-content {
                text-align: center;
            }
            
            .hero-partner-desc {
                margin-left: auto;
                margin-right: auto;
            }
            
            .partner-features {
                justify-content: center;
            }
            
            .hero-partner-buttons {
                justify-content: center;
            }
            
            .partner-stats {
                justify-content: center;
            }
            
            .stat-item {
                text-align: center;
            }
            
            .hero-partner-image {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .floating-card-1 {
                top: 0;
                right: -10px;
            }
            
            .floating-card-2 {
                bottom: 0;
                left: -10px;
            }
            
            .trust-badges {
                bottom: -10px;
                right: 10px;
            }
        }

        @media (max-width: 640px) {
            .hero-partner-section {
                padding: 10px 4px !important;
                display:block!important ;
            }
            
            .partner-features {
                flex-direction: column;
                align-items: stretch;
            }
            
            .feature-item {
                justify-content: center;
            }
            
            .hero-partner-buttons {
                flex-direction: column;
            }
            
            .btn-primary-partner, .btn-outline-partner {
                justify-content: center;
                width: 100%;
            }
            
            .partner-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .floating-card {
                display: none;
            }
            
            .trust-badges {
                position: static;
                margin-top: 20px;
                justify-content: center;
            }
            
            .image-glass-container {
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .premium-badge {
                margin: 0 auto 24px auto;
                width: fit-content;
            }
            
            .stat-number {
                font-size: 24px;
            }
        }

        /* Apple Touch Effect for all buttons */
        .touch-ripple {
            position: relative;
            overflow: hidden;
        }

        .touch-ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translate(-50%, -50%);
            transition: width 0.4s, height 0.4s;
        }

        .touch-ripple:active::after {
            width: 200px;
            height: 200px;
            opacity: 0;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
