

  /* Enhanced typography and critical CSS */
        :root {
            --font-display: 'Space Grotesk', system-ui, sans-serif;
            --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        body {
            font-family: var(--font-body);
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }
        
        /* Add this CSS to your main HTML file - place it in the existing <style> section */


/* Replace BOTH .font-display definitions with this ONE: */
.font-display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.025em;
    font-display: swap; /* Critical for LCP */
}

/* FOOTER FULL WIDTH FIX */
#footer-placeholder {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

/* Ensure the footer inside the placeholder is also full width */
#footer-placeholder footer {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Make sure body doesn't have overflow issues */
body {
    overflow-x: hidden !important;
}

/* Alternative approach - if the above creates horizontal scroll */
/*
#footer-placeholder {
    width: 100% !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0 !important;
}
*/

.text-gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
        

        .font-body {
            font-family: var(--font-body);
            font-weight: 400;
        }
        
        /* Enhanced gradients and animations */
        .hero-pattern {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 400% 400%;
            animation: gradientFlow 15s ease infinite;
        }
        
        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientShift 4s ease-in-out infinite;
        }
        
        .text-gradient-blue {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-title {
            font-family: var(--font-display);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.04em;
            text-rendering: optimizeLegibility;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .section-title {
            font-family: var(--font-display);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            text-rendering: optimizeLegibility;
        }
        
        .accent-text {
            position: relative;
            display: inline-block;
        }
        
        .accent-text::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: -8px;
            right: -8px;
            height: 6px;
            background: var(--gradient-accent);
            border-radius: 3px;
            transform: scaleX(0);
            animation: underlineGrow 1.2s ease-out 1s forwards;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        @keyframes underlineGrow {
            to { transform: scaleX(1); }
        }
        
        /* Enhanced mobile menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 100%;
            max-width: 400px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            transform: translateX(100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 50;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hamburger animation */
        .hamburger {
            position: relative;
            width: 32px;
            height: 32px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hamburger span {
            position: absolute;
            width: 24px;
            height: 2px;
            background: currentColor;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 1px;
        }
        
        .hamburger span:nth-child(1) {
            top: 10px;
        }
        
        .hamburger span:nth-child(2) {
            top: 15px;
        }
        
        .hamburger span:nth-child(3) {
            top: 20px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 15px;
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
            top: 15px;
        }
        
        /* Enhanced card hover effects */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .card-hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }
        
        .card-hover:hover::before {
            left: 100%;
        }
        
        .card-hover:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        /* Floating animation */
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(1deg); }
            66% { transform: translateY(-10px) rotate(-1deg); }
        }
        
        /* Enhanced animations */
        .fade-in {
            animation: fadeIn 1s ease-in forwards;
            opacity: 0;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        .slide-up {
            animation: slideUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(40px);
        }
        
        @keyframes slideUp {
            to { 
                opacity: 1; 
                transform: translateY(0);
            }
        }
        
        /* Pricing card special effects */
        .pricing-card {
            position: relative;
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(148, 163, 184, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .pricing-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
            border-color: rgba(79, 70, 229, 0.3);
        }
        
        .pricing-card.featured {
            background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: scale(1.05);
            border: 2px solid #4c51bf;
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-12px);
        }
        
        /* Button enhancements */
        .btn-primary {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }

        .pricing-card.essential {
            background: linear-gradient(145deg, #10b981 0%, #059669 100%);
            color: white;
            border: 2px solid #047857;
        }
        
        .pricing-card.essential:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
        }
        
        .savings-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .text-gradient-white {
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        }
        
        /* Mobile Button Fixes */
        .btn-primary,
        button,
        a[class*="btn"],
        a[class*="bg-"],
        .mobile-menu a {
            white-space: nowrap !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
            min-height: 44px !important;
            box-sizing: border-box !important;
        }

        /* FAQ Fix */
        .faq-button {
            white-space: normal !important;
            display: block !important;
            text-align: left !important;
            width: 100% !important;
            min-height: auto !important;
        }

        .faq-button h3 {
            white-space: normal !important;
            display: block !important;
            text-align: left !important;
            line-height: 1.4 !important;
        }

        .faq-content {
            white-space: normal !important;
            display: block !important;
            text-align: left !important;
            width: 100% !important;
            max-height: 0 !important;
            overflow: hidden !important;
            transition: max-height 0.3s ease !important;
        }

        .faq-content.open {
            max-height: 500px !important;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .text-7xl {
                font-size: 4rem;
            }
            
            .lg\\:text-8xl {
                font-size: 5rem;
            }
            
            .hero-pattern .btn-primary,
            .hero-pattern a[class*="border-"] {
                white-space: nowrap !important;
                min-width: 200px !important;
                padding: 12px 24px !important;
                font-size: 16px !important;
                line-height: 1.2 !important;
            }
            
            .mobile-menu a {
                white-space: nowrap !important;
                display: block !important;
                padding: 16px 24px !important;
                text-align: center !important;
                min-height: 44px !important;
                line-height: 1.2 !important;
            }
            
            #contact button[type="submit"] {
                white-space: nowrap !important;
                padding: 16px 24px !important;
                font-size: 18px !important;
                min-height: 56px !important;
                line-height: 1.2 !important;
            }
            
            /*.hero-pattern .space-y-4 .flex {*/
            /*    align-items: flex-start !important;*/
            /*    gap: 12px !important;*/
            /*}*/
            
            .hero-pattern .w-3.h-3 {
                margin-top: 2px !important;
                flex-shrink: 0 !important;
            }
            
            .hero-pattern .space-y-4 .flex .text-lg {
                flex: 1 !important;
                margin: 0 !important;
            }
        }

        @media (max-width: 480px) {
            .btn-primary,
            a[class*="btn"],
            a[class*="bg-"] {
                width: 100% !important;
                max-width: 280px !important;
                margin: 0 auto !important;
                font-size: 14px !important;
                padding: 14px 16px !important;
            }
            
            /*.hero-pattern .flex {*/
            /*    flex-direction: row !important;*/
            /*    gap: 4px !important;*/
            /*    align-items: center !important;*/
            /*    max-width: 480px;*/

            /*}*/
        }