/* --- Custom Theme Variables & Base Styles --- */
        :root {
            --brand-primary: #2563eb;
            --brand-primary-hover: #1d4ed8;
            --brand-dark: #0f172a;
            --brand-light: #f8fafc;
            --text-dark: #0f172a;
            --text-muted: #475569;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            /*background-color: var(--brand-light);*/
            overflow-x: hidden;
        }

        /* --- Utilities --- */
        .text-gradient {
            background: linear-gradient(135deg, #1877F2 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .glass-scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .glass-dark {
            background: rgba(17, 24, 39, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
        }

        /* --- Animations --- */
        @keyframes blob-float {
            0% { transform: translate(0px, 0px) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
            100% { transform: translate(0px, 0px) scale(1); }
        }

        @keyframes float-element {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fade-up {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .blob {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            z-index: -1;
            animation: blob-float 10s infinite alternate;
        }
        .blob-1 { background-color: #bfdbfe; top: -100px; left: -100px; }
        .blob-2 { background-color: #e9d5ff; bottom: -100px; right: -100px; animation-delay: -5s; }

        .animate-float { animation: float-element 6s ease-in-out infinite; }
        .animate-fade-up { animation: fade-up 0.8s ease-out forwards; }
        .animate-pulse-slow { animation: fade-up 2s infinite alternate; /* simplistic pulse substitute */ }

        /* --- Component Overrides --- */
        
        
        .btn-brand {
            background-color: var(--brand-dark);
            color: white;
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: transform 0.2s;
        }
        .btn-brand:hover {
            background-color: #334155;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        /* Hero Content */
        .hero-section {
            padding-top: 140px;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .badge-soft {
            background-color: #eff6ff;
            color: var(--brand-primary);
            border: 1px solid #dbeafe;
            border-radius: 50px;
            padding: 6px 16px;
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-weight: 800;
            font-size: 3rem;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 992px) {
            .hero-title { font-size: 3.75rem; }
        }

        .btn-primary-custom {
            background-color: var(--brand-primary);
            border: none;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 700;
            color: white;
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
            transition: all 0.2s;
        }
        .btn-primary-custom:hover {
            background-color: var(--brand-primary-hover);
            transform: translateY(-2px);
            color: white;
        }

        .btn-outline-custom {
            background-color: white;
            border: 1px solid #e2e8f0;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 700;
            color: var(--text-dark);
            transition: all 0.2s;
        }
        .btn-outline-custom:hover {
            background-color: #f8fafc;
            border-color: #cbd5e1;
            color: var(--text-dark);
        }

        /* Dashboard Mockup (Custom CSS) */
        .dashboard-container {
            position: relative;
            z-index: 10;
        }
        .dashboard-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            border: 1px solid #f1f5f9;
            overflow: hidden;
            width: 100%;
            max-width: 500px;
            margin-left: auto; /* aligns right on large screens */
        }
        .dashboard-header {
            background: #f8fafc;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .traffic-lights span {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 4px;
        }
        .lead-item {
            padding: 0.75rem;
            border-radius: 12px;
            transition: background 0.2s;
            margin-bottom: 0.5rem;
            border: 1px solid transparent;
        }
        .lead-item.active {
            background-color: #eff6ff;
            border-color: #dbeafe;
        }
        .lead-item:hover:not(.active) {
            background-color: #f8fafc;
            border-color: #f1f5f9;
        }
        .lead-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.75rem;
        }
        
        /* Floating Notifications */
        .float-card {
            position: absolute;
            background: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border: 1px solid #f1f5f9;
            z-index: 20;
            min-width: 200px;
        }
        .float-card.whatsapp { top: 10%; right: -20px; }
        .float-card.alert { bottom: 15%; left: -40px; }

        /* Logos */
        .logo-text {
            font-weight: 700;
            font-size: 1.25rem;
            color: #1e293b;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: all 0.5s;
        }
        .logo-text:hover { opacity: 1; filter: grayscale(0%); }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            transition: all 0.3s;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }
        .feature-card .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

		/* New Hover Lift Effect */
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
        }
        /* Browser Mockup for Screenshots */
        .browser-mockup {
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
            overflow: hidden;
            background: white;
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }
        .browser-mockup:hover {
            transform: translateY(-2px);
        }
        .browser-bar {
            background: #f8fafc;
            padding: 12px 16px;
            display: flex;
            gap: 8px;
            border-bottom: 1px solid #e2e8f0;
            align-items: center;
        }
        .browser-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .url-bar {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 11px;
            color: #94a3b8;
            flex-grow: 1;
            text-align: center;
            max-width: 400px;
            margin: 0 auto;
        }
        
        /* Video Container */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px -5px rgba(0,0,0,0.2);
            border: 4px solid white;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* --- Horizontal Stepper Styles --- */
        .stepper-nav .nav-link {
            background: transparent;
            border: none;
            color: var(--text-muted);
            padding: 1rem 1.5rem;
            position: relative;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .stepper-nav .nav-link:hover {
            opacity: 1;
            color: var(--brand-primary);
        }
        .stepper-nav .nav-link.active {
            color: var(--brand-primary);
            font-weight: 700;
            opacity: 1;
            background: transparent !important;
        }
        .stepper-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background-color: var(--brand-primary);
            border-radius: 10px;
        }
        .stepper-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: white;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            transition: all 0.3s ease;
            color: #cbd5e1;
        }
        .nav-link.active .stepper-icon {
            border-color: var(--brand-primary);
            background: #eff6ff;
            color: var(--brand-primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
        }
        
        .step-content-card {
            border: none;
            background: transparent;
        }
        
        /* --- Benefits & Features Styles --- */
        .benefit-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            height: 100%;
            transition: all 0.4s ease;
        }
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
            border-color: var(--brand-primary);
        }
        .benefit-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            transition: all 0.4s ease;
        }
        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .highlight-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            color: var(--text-muted);
        }
        .highlight-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 16px;
            height: 16px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-size: cover;
        }
        
        .feature-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }
        .feature-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.1);
            pointer-events: none;
        }
        /* --- Educational & FAQ Styles --- */
        .edu-card {
            background: white;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            padding: 2rem;
        }

        /* Knowledge Base / Documentation Style FAQ */
        .kb-nav .nav-link {
            text-align: left;
            padding: 1rem 1.25rem;
            color: var(--text-muted);
            border-radius: 8px;
            transition: all 0.2s ease;
            font-weight: 600;
            border: 1px solid transparent;
            margin-bottom: 8px;
        }
        .kb-nav .nav-link:hover {
            background-color: #f1f5f9;
            color: var(--text-dark);
        }
        .kb-nav .nav-link.active {
            background-color: #eff6ff;
            color: var(--brand-primary);
            border-color: #dbeafe;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }
        .kb-nav .nav-link.active::before {
            content: '•';
            margin-right: 8px;
            color: var(--brand-primary);
        }
        
        .kb-answer-card {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            border: 1px solid #f1f5f9;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            min-height: 400px;
        }
        .kb-answer-card h4 {
            color: var(--text-dark);
            font-weight: 800;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
        .kb-answer-card p {
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
        }
        .kb-list li {
            margin-bottom: 10px;
            color: var(--text-muted);
        }
        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .dashboard-card { margin: 0 auto; }
            .float-card { display: none; } /* Hide floating elements on mobile for safety */
            .hero-section { text-align: center; }
            .hero-buttons { justify-content: center; }
            .stepper-nav {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 10px;
                justify-content: flex-start !important;
            }
            /* Make KB nav scrollable horizontally on mobile */
            .kb-nav {
                flex-direction: row !important;
                overflow-x: auto;
                padding-bottom: 15px;
                flex-wrap: nowrap;
            }
            .kb-nav .nav-link {
                white-space: nowrap;
                margin-right: 10px;
                margin-bottom: 0;
            }
            .kb-answer-card {
                padding: 1.5rem;
            }
        }