:root {
            --primary-blue: #2563eb;
            --primary-dark: #0f172a;
            --slate-600: #475569;
            --slate-400: #94a3b8;
            --bg-light: #ffffff;
            --card-border: rgba(226, 232, 240, 0.8);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--primary-dark);
            /*background-color: var(--bg-light);*/
            overflow-x: hidden;
            selection-background: #dbeafe;
        }

        /* Decorative Backgrounds */
        .bg-decor-1 {
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: rgba(37, 99, 235, 0.05);
            border-radius: 50%;
            filter: blur(80px);
            transform: translate(25%, -25%);
            pointer-events: none;
            z-index: 0;
        }

        .bg-decor-2 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 500px;
            height: 500px;
            background: rgba(79, 70, 229, 0.05);
            border-radius: 50%;
            filter: blur(80px);
            transform: translate(-25%, 25%);
            pointer-events: none;
            z-index: 0;
        }

        
        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 1s ease-out;
        }
        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Typography */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }
        @media (min-width: 992px) { .hero-title { font-size: 4.5rem; } }
        
        .text-gradient {
            background: linear-gradient(to right, #2563eb, #4f46e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Badge */
        .badge-pill-custom {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.25rem;
            border-radius: 100px;
            background: #eff6ff;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 0.875rem;
            border: 1px solid #dbeafe;
        }
        .dot-ping {
            height: 8px;
            width: 8px;
            background-color: var(--primary-blue);
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        @keyframes ping {
            75%, 100% { transform: scale(2); opacity: 0; }
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--primary-blue);
            color: white;
            padding: 1rem 2rem;
            border-radius: 1rem;
            font-weight: 700;
            border: none;
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            color: white;
        }
        .btn-outline-custom {
            background: white;
            color: var(--primary-dark);
            padding: 1rem 2rem;
            border-radius: 1rem;
            font-weight: 700;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        .btn-outline-custom:hover { background: #f8fafc; }

        /* Mock UI */
        .dashboard-container {
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
            border: 1px solid #f1f5f9;
            overflow: hidden;
            position: relative;
        }
        .mock-header {
            background: #f8fafc;
            border-bottom: 1px solid #f1f5f9;
            padding: 1rem 1.5rem;
        }
        .mock-card {
            background: white;
            border: 1px solid #f1f5f9;
            border-radius: 1rem;
            padding: 1rem;
        }

        /* Floating Badge */
        .floating-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 20;
            animation: bounce 3s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .exit-intent-label {
            position: absolute;
            top: 50%;
            left: -30px;
            background: #4f46e5;
            color: white;
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
            z-index: 20;
        }

        /* Stats */
        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .stat-icon {
            background: #f8fafc;
            padding: 0.5rem;
            border-radius: 0.5rem;
            color: var(--primary-blue);
            border: 1px solid #f1f5f9;
        }

        /* Avatars */
        .avatar-group { display: flex; }
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -12px;
            background: #e2e8f0;
        }
        .avatar:first-child { margin-left: 0; }

        /* Feature Section & Grid */
        .feature-grid-wrapper {
            position: relative;
            background: #f8fafc;
            border-radius: 2rem;
            padding: 4rem 2rem;
            margin-top: 6rem;
            border: 1px solid rgba(226, 232, 240, 0.6);
            overflow: hidden;
        }

        .dot-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
            background-size: 24px 24px;
            opacity: 0.5;
            pointer-events: none;
        }

        .mini-feature-card {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 1.25rem;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        .mini-feature-card:hover {
            background: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
            border-color: var(--primary-blue);
        }

        .mini-feature-card i {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eff6ff;
            border-radius: 0.75rem;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .mini-feature-card:hover i {
            background: var(--primary-blue);
            color: #ffffff !important;
        }
		/* Modern Benefit Block */
        .benefit-block {
            background: #f0f5f9;
            border-radius: 3rem;
            padding: 6rem 0;
            margin: 4rem 0;
        }
        .benefit-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 2rem;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .benefit-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
        }
        .benefit-icon-wrapper {
            width: 64px;
            height: 64px;
            background: #eff6ff;
            color: var(--primary-blue);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        /* Trust Banner */
        .trust-banner {
            background: #ffffff;
            padding: 4rem 0;
            border-top: 1px solid #f1f5f9;
        }
        .logo-cloud {
            opacity: 0.5;
            filter: grayscale(1);
            transition: all 0.3s;
            font-weight: 900;
            font-size: 1.5rem;
            letter-spacing: -1px;
        }
        .logo-cloud:hover { opacity: 1; filter: grayscale(0); }
        /* Hub Layout Redesign */
        .hub-section {
            padding: 100px 0;
            background: #f8fafc;
            border-radius: 4rem;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hub-nucleus {
            background: white;
            border: 1px solid #e2e8f0;
            padding: 3rem;
            border-radius: 3rem;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            position: relative;
            z-index: 2;
        }

        .hub-benefit-card {
            background: white;
            border: 1px solid #e2e8f0;
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            position: relative;
            z-index: 3;
            height: 100%;
        }

        .hub-benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-blue);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
        }

        .hub-icon {
            width: 50px;
            height: 50px;
            background: #eff6ff;
            color: var(--primary-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .hub-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, #dbeafe, transparent);
            height: 2px;
            width: 100%;
            top: 50%;
            z-index: 1;
            display: none;
        }

        @media (min-width: 992px) {
            .hub-line { display: block; }
        }

        .pulse-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 100px;
            font-weight: 700;
            margin-top: 1.5rem;
            box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
            animation: pulse-blue 2s infinite;
        }

        @keyframes pulse-blue {
            0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
        }
        
        /* --- PIPELINE SECTION (Animated Area) --- */
        .pipeline-section { 
            padding: 100px 0; 
            position: relative; 
            margin: 6rem 0;
            border-radius: 0rem;
            overflow: hidden;
            background: #f8fafc;
            border: 1px solid #f1f5f9;
        }

        /* Confined Animation Background */
        .pipeline-anim-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .zoom-grid-scoped {
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background-image: 
                linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: zoomInfinite 30s linear infinite;
        }

        @keyframes zoomInfinite {
            0% { transform: scale(1); }
            100% { transform: scale(1.3); }
        }

        .lead-train-scoped {
            position: absolute;
            height: 2px;
            width: 150px;
            background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
            filter: blur(1px);
            box-shadow: 0 0 15px var(--primary-blue);
            animation: trainRun 5s linear infinite;
            opacity: 0.4;
            z-index: 1;
        }

        @keyframes trainRun {
            0% { left: -20%; }
            100% { left: 120%; }
        }

        /* Pipeline Cards */
        .pipeline-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid var(--card-border);
            border-radius: 2rem;
            padding: 3rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            z-index: 5;
        }
        .pipeline-card:hover {
            transform: scale(1.03);
            border-color: var(--primary-blue);
            box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.15);
        }
        .pipeline-icon {
            width: 70px; height: 70px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: var(--primary-blue);
            border-radius: 1.25rem;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.75rem; margin-bottom: 2rem;
        }
        
        /* Steps Section Redesign */
        .steps-section {
            padding: 80px 0;
            background: #ffffff;
            position: relative;
        }

        .step-card {
            background: #fff;
            border: 1px solid #f1f5f9;
            border-radius: 2rem;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .step-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
            transform: translateY(-5px);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50px;
            width: 250px;
            height: 2px;
            background: #f1f5f9;
            z-index: -1;
            display: none;
        }

        @media (min-width: 992px) {
            .step-number::after { display: block; }
            .col-lg-4:last-child .step-number::after { display: none; }
        }

        /* Updated Equal Height Image Wrapper */
        .step-img-wrapper {
            background: #f8fafc;
            border-radius: 1.25rem;
            margin-bottom: 1.5rem;
            border: 1px solid #f1f5f9;
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
            height: 200px; /* Fixed height for consistency */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-img-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(15px) brightness(1.1);
            opacity: 0.4;
            transform: scale(1.2); /* Zoom effect for background */
            pointer-events: none;
        }

        .step-img-main {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: contain; /* Preserves aspect ratio within fixed container */
            padding: 10px;
            transition: transform 0.5s ease;
        }

        .step-card:hover .step-img-main {
            transform: scale(1.05);
        }
       