            :root {
                --primary: #4f46e5;
                --primary-dark: #4338ca;
                --primary-light: #e0e7ff;
                --secondary: #4338ca;
                --dark: #0f172a;
                --text-main: #334155;
                --text-muted: #64748b;
                --bg-surface: #ffffff;
                --bg-canvas: #f8fafc;
                --border: #e2e8f0;
            }

            body {
                font-family: 'Outfit', sans-serif;
                background-color: var(--bg-canvas);
                color: var(--text-main);
                overflow-x: hidden;
            }

            /* --- NEW MODERN HEADER (Compact & Professional) --- */
            .modern-header {
                position: relative;
                background: #ffffff;
                padding: 60px 0 40px;
                /* Compact Padding */
                border-bottom: 1px solid var(--border);
                text-align: center;
                overflow: hidden;
            }

            /* Subtle Top Glow (Replaces the animated dots) */
            .modern-header::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100%;
                max-width: 800px;
                height: 400px;
                background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
                pointer-events: none;
                z-index: 0;
            }

            /* Optional: Very subtle grid pattern */
            .modern-header::after {
                content: '';
                position: absolute;
                inset: 0;
                background-image: linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
                background-size: 40px 40px;
                opacity: 0.3;
                z-index: 0;
                pointer-events: none;
                mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
                -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
            }

            .header-content {
                position: relative;
                z-index: 2;
            }



            /* --- FEATURES GRID (Maintained from previous success) --- */
            .features-section {
                padding: 60px 0 80px;
                background-color: var(--bg-canvas);
            }

            .container-xl {
                max-width: 1140px;
                margin: 0 auto;
                padding: 0 24px;
            }

            .modern-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
                gap: 24px;
            }

            .pro-card {
                background: #ffffff;
                border: 1px solid var(--border);
                border-radius: 20px;
                padding: 32px;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
            }

            .pro-card:hover {
                transform: translateY(-4px);
                border-color: var(--primary);
                box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.1);
            }

            .icon-circle {
                width: 54px;
                height: 54px;
                background: var(--bg-canvas);
                border-radius: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                margin-bottom: 24px;
                transition: 0.3s;
                border: 1px solid rgba(0, 0, 0, 0.03);
            }

            .pro-card:hover .icon-circle {
                background: var(--primary);
                color: #ffffff;
                transform: scale(1.05) rotate(-5deg);
            }

            .pro-title {
                font-size: 1.2rem;
                font-weight: 700;
                color: var(--dark);
                margin-bottom: 10px;
                letter-spacing: -0.01em;
            }

            .pro-desc {
                font-size: 0.95rem;
                color: var(--text-muted);
                line-height: 1.6;
                margin-bottom: 24px;
            }

            .card-badge {
                position: absolute;
                top: 24px;
                right: 24px;
                font-size: 11px;
                font-weight: 700;
                padding: 4px 10px;
                border-radius: 100px;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }

            .badge-hot {
                background: #fdf2f8;
                color: var(--secondary);
                border: 1px solid rgba(236, 72, 153, 0.2);
            }

            .badge-new {
                background: #eff6ff;
                color: var(--primary);
                border: 1px solid rgba(79, 70, 229, 0.2);
            }

            .card-features-list {
                margin-top: auto;
                padding-top: 20px;
                border-top: 1px dashed var(--border);
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .cf-item {
                font-size: 0.85rem;
                color: var(--text-main);
                font-weight: 500;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .cf-item svg {
                width: 16px;
                height: 16px;
                color: #10b981;
            }

            /* Green checkmark */

            @media (max-width: 768px) {
                .modern-grid {
                    grid-template-columns: 1fr;
                }

                .header-title {
                    font-size: 2.5rem;
                }

                .breadcrumb-pill {
                    font-size: 12px;
                }
            }
