  /* Turnkey SaaS Platform CSS */
        :root {
            --primary: #071451; /* Vibrant Purple/Blue */
            --primary-hover: #273471;
            --secondary: #071451; /* Deep Navy */
            --bg-body: #F4F7FE; /* Soft App Background */
            --bg-card: #FFFFFF;
            --text-main: #071451;
            --text-muted: #A3AED0;
            --border-color: #E0E5F2;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            -webkit-font-smoothing: antialiased;
			overflow-x:hidden;
        }

        /* Navbar */
        .navbar {
            background-color: var(--bg-card);
            box-shadow: 0 10px 30px -10px rgba(112, 144, 176, 0.1);
            padding: 1rem 0;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--secondary) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand-icon {
            background: linear-gradient(135deg, #4318FF, #868CFF);
            color: white;
            border-radius: 8px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-main) !important;
            margin: 0 10px;
            transition: color 0.2s;
        }
        .nav-link:hover {
            color: var(--primary) !important;
        }
        .btn-launch {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            border-radius: 30px;
            padding: 0.6rem 1.5rem;
            box-shadow: 0 4px 15px rgba(7, 20, 81, 0.3);
            transition: all 0.3s;
        }
        .btn-launch:hover {
            background-color: var(--primary-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(7, 20, 81, 0.4);
        }

        /* Hero Section */
        .hero-section {
            padding: 6rem 0 4rem;
            text-align: center;
        }
        .hero-badge {
            background: rgba(67, 24, 255, 0.1);
            color: var(--primary);
            font-weight: 600;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .hero-title span {
            color: var(--primary);
        }
        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        /* Trust Benefits Strip */
        .benefits-strip {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px -10px rgba(112, 144, 176, 0.1);
            margin-bottom: 4rem;
        }
        .benefit-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 600;
            color: var(--secondary);
        }
        .benefit-icon {
            color: #01B574; /* Success Green */
            font-size: 1.5rem;
        }

        /* Category Filter */
        .category-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 3rem;
        }
        .cat-btn {
            background: var(--bg-card);
            color: var(--text-muted);
            border: 1px solid var(--border-color);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }
        .cat-btn:hover, .cat-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(67, 24, 255, 0.2);
        }

        /* Turnkey System Cards */
        .system-card {
            background: var(--bg-card);
            border-radius: 20px;
            border: none;
            box-shadow: 0 10px 30px -10px rgba(112, 144, 176, 0.12);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .system-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(112, 144, 176, 0.2);
        }
        .card-img-wrapper {
            position: relative;
            padding: 1rem 1rem 0;
            background: #F4F7FE;
        }
        .card-img-top {
            border-radius: 12px;
            height: 200px;
            object-fit: cover;
            object-position: top;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .system-category {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        .system-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        .system-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        /* Included Features List */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
            flex-grow: 1;
        }
        .feature-list li {
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .feature-list li i {
            color: var(--primary);
        }

        /* Card Footer */
        .card-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        .price-block {
            display: flex;
            flex-direction: column;
        }
        .price-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
        }
        .price-amount {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary);
        }
        .btn-preview {
            background: #F4F7FE;
            color: var(--secondary);
            border: none;
            padding: 0.6rem 1rem;
            border-radius: 10px;
            font-weight: 600;
            transition: background 0.2s;
        }
        .btn-preview:hover {
            background: #E0E5F2;
        }
        .btn-buy-icon {
            background: var(--primary);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.2s;
            box-shadow: 0 4px 10px rgba(67, 24, 255, 0.2);
        }
        .btn-buy-icon:hover {
            background: var(--primary-hover);
            transform: scale(1.05);
        }

        /* Footer */
        .footer {
            background-color: #FFFFFF;
            padding: 5rem 0 2rem;
            margin-top: 5rem;
        }
        .footer-heading {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .footer-link:hover {
            color: var(--primary);
        }