
        :root {
            --primary: #f59e0b;
            --primary-dark: #d97706;
            --primary-light: #fbbf24;
            --secondary: #1e293b;
            --accent: #0f766e;
            --bg-light: #f8fafc;
        }
        * { font-family: 'Inter', sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: #fff; }

        .gradient-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 100%);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
        }
        .text-gradient {
            color: #f59e0b;
            background: none;
            -webkit-text-fill-color: currentColor;
        }
        .btn-gold {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -12px rgba(15, 118, 110, 0.15);
        }
        .floating-animation {
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .pulse-glow {
            animation: pulseGlow 2s infinite;
        }
        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
            50% { box-shadow: 0 0 30px 5px rgba(245, 158, 11, 0.2); }
        }
        .header-nav .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            height: 2.5rem;
            padding: 0 0.1rem;
            font-size: 0.875rem;
            font-weight: 600;
            line-height: 1;
            color: #334155;
            white-space: nowrap;
            transition: color 0.2s ease;
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        @media (min-width: 1280px) {
            .header-nav .nav-link {
                font-size: 0.9375rem;
                gap: 0.4rem;
            }
        }
        .header-nav .nav-link:hover,
        .header-nav .nav-link.active {
            color: #d97706;
        }
        .header-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            transition: width 0.3s ease;
        }
        .header-nav .nav-link:hover::after,
        .header-nav .nav-link.active::after {
            width: 100%;
        }
        .header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            height: 5rem;
            min-width: 0;
            width: 100%;
        }
        .header-nav {
            display: none;
            align-items: center;
            gap: 0.85rem;
            flex: 1 1 auto;
            justify-content: center;
            min-width: 0;
            overflow: visible;
        }
        @media (min-width: 1024px) {
            .header-nav { display: flex; }
            .header-actions { display: flex !important; }
        }
        @media (min-width: 1280px) {
            .header-bar { gap: 1.25rem; }
            .header-nav { gap: 1.35rem; }
        }
        .header-actions {
            display: none;
            align-items: center;
            gap: 0.4rem;
            flex: 0 0 auto;
            max-width: 100%;
        }
        .header-actions .partner-register {
            display: none;
        }
        @media (min-width: 1280px) {
            .header-actions .partner-register {
                display: inline-flex;
            }
            .header-actions {
                gap: 0.55rem;
            }
        }
        .nav-dropdown {
            position: relative;
            display: flex;
            align-items: center;
            height: 5rem;
        }
        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% - 0.75rem);
            left: 50%;
            transform: translateX(-50%);
            min-width: 260px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.18);
            padding: 0.5rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.15s ease, visibility 0.15s ease;
            z-index: 60;
        }
        /* Invisible hover bridge between trigger and panel */
        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: -1rem;
            height: 1rem;
        }
        .nav-dropdown-menu.align-right {
            left: auto;
            right: 0;
            transform: none;
        }
        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu,
        .nav-dropdown.open .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .nav-dropdown-menu a {
            display: block;
            padding: 0.65rem 0.9rem;
            border-radius: 0.75rem;
            color: #334155;
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.25;
            white-space: nowrap;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .nav-dropdown-menu a:hover {
            background: #fffbeb;
            color: #d97706;
        }
        .nav-dropdown > .nav-link .chevron {
            transition: transform 0.2s ease;
            font-size: 0.625rem;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            color: #94a3b8;
        }
        .nav-dropdown:hover > .nav-link .chevron,
        .nav-dropdown:focus-within > .nav-link .chevron,
        .nav-dropdown.open > .nav-link .chevron {
            transform: rotate(180deg);
            color: #d97706;
        }
        .header-actions .partner-link {
            display: inline-flex;
            align-items: center;
            height: 2.5rem;
            padding: 0 0.4rem;
            font-size: 0.8125rem;
            font-weight: 600;
            line-height: 1;
            color: #334155;
            white-space: nowrap;
            transition: color 0.2s ease;
        }
        @media (min-width: 1280px) {
            .header-actions .partner-link {
                font-size: 0.875rem;
                padding: 0 0.55rem;
            }
        }
        .header-actions .partner-link:hover {
            color: #d97706;
        }
        .header-actions .apply-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            height: 2.55rem;
            padding: 0 0.95rem;
            border: 0;
            border-radius: 0.75rem;
            font-size: 0.8125rem;
            font-weight: 700;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
            cursor: pointer;
            font-family: inherit;
            flex-shrink: 0;
        }
        @media (min-width: 1280px) {
            .header-actions .apply-btn {
                height: 2.75rem;
                padding: 0 1.25rem;
                font-size: 0.9rem;
                gap: 0.5rem;
            }
        }
        .mobile-accordion-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.5rem 0;
            color: #374151;
            font-weight: 500;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }
        .mobile-accordion-panel {
            display: none;
            padding: 0.25rem 0 0.5rem 0.75rem;
            border-left: 2px solid #fde68a;
            margin-left: 0.25rem;
        }
        .mobile-accordion.open .mobile-accordion-panel {
            display: block;
        }
        .mobile-accordion.open .mobile-accordion-btn .chevron {
            transform: rotate(180deg);
        }
        .mobile-accordion-panel a {
            display: block;
            padding: 0.45rem 0;
            color: #64748b;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .mobile-accordion-panel a:hover {
            color: #d97706;
        }
        .feature-icon {
            display: inline-flex;
            padding: 1rem;
            border-radius: 1rem;
            color: white;
            transition: all 0.3s ease;
        }
        .feature-icon:hover {
            transform: scale(1.1) rotate(-5deg);
        }
        .testimonial-card {
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .testimonial-card:hover {
            border-color: #f59e0b;
            box-shadow: 0 20px 40px -15px rgba(245, 158, 11, 0.2);
        }
        .stat-card {
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
        }
        .marquee {
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .section-pattern {
            background-image: radial-gradient(circle at 1px 1px, rgba(245,158,11,0.15) 1px, transparent 0);
            background-size: 40px 40px;
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .industry-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(245,158,11,0.1);
            color: #d97706;
        }
        .input-field {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.75rem;
            outline: none;
            transition: all 0.3s;
            background: #fff;
            color: #0f172a;
        }
        .input-field:focus {
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
        }
        .quote-card {
            background: #fff;
            border-radius: 1.35rem;
            box-shadow: 0 25px 50px -20px rgba(0,0,0,0.45);
            overflow: hidden;
            position: relative;
        }
        .quote-card-top {
            background: linear-gradient(135deg, #fff7ed 0%, #fff 55%);
            border-bottom: 1px solid #f1f5f9;
            padding: 1.35rem 1.5rem 1.15rem;
        }
        .quote-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-top: 0.85rem;
        }
        .quote-trust span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.68rem;
            font-weight: 700;
            color: #64748b;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 999px;
            padding: 0.28rem 0.6rem;
        }
        .quote-trust span i { color: #10b981; font-size: 0.65rem; }
        .quote-body { padding: 1.25rem 1.5rem 1.5rem; }
        .quote-label {
            display: block;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #64748b;
            margin-bottom: 0.4rem;
        }
        .quote-field { margin-bottom: 0.9rem; }
        .quote-field .input-wrap { position: relative; }
        .quote-field .input-wrap > i,
        .quote-field .input-wrap > .prefix {
            position: absolute;
            left: 0.95rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 0.9rem;
            z-index: 1;
        }
        .quote-field .input-wrap > .prefix {
            font-weight: 700;
            font-size: 0.85rem;
        }
        .quote-field .input-field {
            height: 3rem;
            padding-left: 2.65rem;
            border-radius: 0.85rem;
            background: #f8fafc;
            border-color: #e2e8f0;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .quote-field select.input-field {
            appearance: none;
            padding-right: 2.5rem;
            cursor: pointer;
        }
        .quote-field .input-field:focus {
            background: #fff;
        }
        .amount-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-top: 0.55rem;
        }
        .amount-chips button {
            border: 1px solid #e2e8f0;
            background: #fff;
            color: #475569;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .amount-chips button:hover,
        .amount-chips button.active {
            background: #fffbeb;
            border-color: #f59e0b;
            color: #b45309;
        }
        .emi-preview {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: #fff;
            border-radius: 1rem;
            padding: 0.9rem 1rem;
            margin: 0.35rem 0 1rem;
        }
        .emi-preview[hidden] {
            display: none !important;
        }
        .quote-form-wrap {
            width: 100%;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
        }
        @media (min-width: 1024px) {
            .quote-form-wrap {
                margin-right: 0;
            }
        }
        .emi-preview .emi-label {
            font-size: 0.72rem;
            color: #94a3b8;
            font-weight: 600;
        }
        .emi-preview .emi-value {
            font-size: 1.15rem;
            font-weight: 800;
            color: #fbbf24;
            margin-top: 0.1rem;
        }
        .emi-preview .emi-note {
            font-size: 0.68rem;
            color: #94a3b8;
            text-align: right;
            max-width: 9rem;
            line-height: 1.35;
        }
        .quote-submit {
            width: 100%;
            height: 3.15rem;
            border: none;
            border-radius: 0.9rem;
            font-weight: 800;
            font-size: 0.95rem;
            color: #fff;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            box-shadow: 0 10px 24px -8px rgba(245,158,11,0.55);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .quote-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px -8px rgba(245,158,11,0.65);
        }
        .quote-error {
            display: none;
            font-size: 0.8rem;
            color: #b91c1c;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 0.65rem;
            padding: 0.55rem 0.75rem;
            margin-bottom: 0.75rem;
        }
        .quote-error.show { display: block; }
        .quote-success-msg {
            display: none;
            text-align: center;
            padding: 1.5rem 0.5rem;
        }
        .quote-success-msg.show { display: block; }
        .quote-success-msg i {
            font-size: 2.5rem;
            color: #10b981;
            margin-bottom: 0.75rem;
        }
        @media (max-width: 1023px) {
            .quote-form-wrap:not(.hidden) { display: block !important; margin-top: 2rem; }
        }
        .mobile-menu {
            transform: translateY(-150%);
            transition: transform 0.4s ease;
            max-height: 100vh;
            overflow-y: auto;
        }
        .mobile-menu.open {
            transform: translateY(0);
        }
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #0f172a;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
            transform: translateX(150%);
            transition: transform 0.3s ease;
            z-index: 9999;
        }
        .toast.show {
            transform: translateX(0);
        }
        @media (max-width: 640px) {
            .hero-title { font-size: 2.5rem !important; }
            .hero-container { padding-top: 5rem !important; }
        }
        /* Modal */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .modal-backdrop.show {
            opacity: 1;
            pointer-events: all;
        }
        .modal-content {
            transform: scale(0.9);
            transition: transform 0.3s;
        }
        .modal-backdrop.show .modal-content {
            transform: scale(1);
        }
    