:root {
            --primary-blue: #2563eb;
            --primary-dark: #0f172a;
            --text-muted: #64748b;
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(226, 232, 240, 0.8);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            color: var(--primary-dark);
            overflow-x: hidden;
        }

        /* Hero Background Effects */
        .hero-wrapper {
            position: relative;
            background: radial-gradient(circle at 50% -10%, #f1f5f9 0%, #ffffff 100%);
            min-height: 100vh;
        }

        .blob {
            position: absolute;
            width: 600px;
            height: 600px;
            filter: blur(80px);
            border-radius: 50%;
            z-index: 0;
            opacity: 0.6;
        }
        .blob-1 {
            top: -100px;
            left: -100px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(147, 51, 234, 0.1) 100%);
        }
        .blob-2 {
            bottom: -100px;
            right: -100px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
        }

        /* Typography & Gradients */
        .text-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        h1 {
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        /* Custom Cards */
        /* Custom Cards */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
            border-radius: 1.25rem;
        }

        .feature-box {
            background: #fff;
            border: 1px solid #f1f5f9;
            padding: 2rem;
            border-radius: 1.5rem;
            transition: all 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
            border-color: var(--primary-blue);
        }

        /* Visual Components */
        .dashboard-container {
            position: relative;
            border-radius: 2.5rem;
            background: var(--primary-dark);
            padding: 0.75rem;
            box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
        }

        .dashboard-inner {
            background: #ffffff;
            border-radius: 2rem;
            overflow: hidden;
        }

        .chart-bar {
            flex: 1;
            background: #f1f5f9;
            border-radius: 0.5rem 0.5rem 0 0;
            transition: height 1s ease-out;
        }
        .chart-bar.active { background: var(--primary-blue); }
        .chart-bar.secondary { background: #818cf8; }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(1deg); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        .delay-1 { animation-delay: 1.5s; }

        /* Buttons */
        .btn-custom-primary {
            background: var(--primary-blue);
            color: white;
            border-radius: 1rem;
            padding: 1rem 2rem;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-custom-primary:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
            color: white;
        }

        .btn-custom-outline {
            background: white;
            border: 1px solid #e2e8f0;
            color: #475569;
            border-radius: 1rem;
            padding: 1rem 2rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .btn-custom-outline:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
        }

        /* Map UI */
        .map-mock {
            height: 120px;
            background: #f8fafc;
            border-radius: 1rem;
            position: relative;
            overflow: hidden;
            border: 1px solid #f1f5f9;
        }
        .ping {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--primary-blue);
            border-radius: 50%;
        }
        .ping::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--primary-blue);
            border-radius: 50%;
            animation: ripple 1.5s infinite;
        }
        @keyframes ripple {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(3); opacity: 0; }
        }

        .logo-cloud span {
            font-size: 1.25rem;
            font-weight: 900;
            color: #1e293b;
            opacity: 0.4;
            transition: opacity 0.3s;
        }
        .logo-cloud span:hover { opacity: 1; }
		.floating { animation: float 6s ease-in-out infinite; }
	        @keyframes float {
	            0%, 100% { transform: translateY(0px); }
	            50% { transform: translateY(-15px); }
	        }

        .section-title { font-size: 2.5rem; margin-bottom: 1rem; }
        .section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 3rem; }

        /* Checklist Custom */
        .check-item {
            padding: 1.5rem;
            background: white;
            border: 1px solid #f1f5f9;
            border-radius: 1.25rem;
            transition: border-color 0.3s;
        }
        .check-item:hover {
            border-color: var(--primary-blue);
        }
        /* Software Comparison Cards */
        .comp-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .comp-card.featured {
            border: 2px solid var(--primary-blue);
            box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1);
        }

        /* Marketing Section Styling */
        .marketing-content {
            padding: 80px 0;
            background-color: var(--soft-grey);
        }

        .marketing-image-wrapper {
            position: relative;
            padding: 20px;
        }

        .hero-image {
            position: relative;
            z-index: 1;
            border-radius: 2rem;
            box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
            border: 8px solid white;
        }

        .highlight-pill {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        /* Mastering Implementation styles */
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            color: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        /* Missing Bootstrap Subtle Utilities Fallback */
        .bg-primary-subtle { background-color: #dbeafe !important; }
        .bg-indigo-subtle { background-color: #e0e7ff !important; }
        .bg-success-subtle { background-color: #dcfce7 !important; }
        .text-primary { color: var(--primary-blue) !important; }
        .text-slate-900 { color: #0f172a !important; }
        .border-primary-subtle { border-color: #bfdbfe !important; }
        .rounded-4 { border-radius: 1rem !important; }
        .rounded-end-4 { border-top-right-radius: 1rem !important; border-bottom-right-radius: 1rem !important; }
        .shadow-soft { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05) !important; }
        
        /* Benefit Grid Custom Styles */
        .benefit-card {
            padding: 1.5rem;
            border-radius: 1.25rem;
            background: #fff;
            border: 1px solid #f1f5f9;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
        }
        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-blue);
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.1);
        }
        .benefit-icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: 1rem;
            background: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: all 0.3s ease;
        }
        .benefit-card:hover .benefit-icon-wrapper {
            background: var(--primary-blue);
        }
        .benefit-icon-wrapper img {
            width: 32px;
            height: 32px;
            transition: filter 0.3s ease;
        }
        .benefit-card:hover .benefit-icon-wrapper img {
            filter: brightness(0) invert(1);
        }
        .benefit-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--primary-dark);
        }
        .benefit-card p {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }