.elementor-2491 .elementor-element.elementor-element-2008c958{--display:flex;}/* Start custom CSS */<style>
        /* ============================================
           BEEMBO AI - LANDING PAGE STYLES
           ============================================ */
        
        :root {
            /* Primary Colors */
            --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
            --primary-purple: #8b5cf6;
            --primary-blue: #6366f1;
            --primary-indigo: #4f46e5;
            
            /* Secondary Colors */
            --secondary-cyan: #06b6d4;
            --secondary-pink: #ec4899;
            --secondary-orange: #f97316;
            
            /* Neutral Colors */
            --dark-bg: #0f0f1a;
            --dark-surface: #1a1a2e;
            --dark-card: #16213e;
            --light-text: #f8fafc;
            --muted-text: #94a3b8;
            --border-color: rgba(139, 92, 246, 0.2);
            
            /* Shadows */
            --glow-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
            --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --hover-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
            
            /* Typography */
            --font-primary: 'Inter', sans-serif;
            --font-heading: 'Poppins', sans-serif;
        }

        html {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

    

        body {
            font-family: var(--font-primary);
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 40% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
                var(--dark-bg);
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--primary-gradient);
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
        .shape:nth-child(2) { width: 300px; height: 300px; top: 50%; right: -50px; animation-delay: -5s; }
        .shape:nth-child(3) { width: 200px; height: 200px; bottom: 20%; left: 20%; animation-delay: -10s; }
        .shape:nth-child(4) { width: 150px; height: 150px; top: 30%; right: 30%; animation-delay: -15s; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(50px, 50px) rotate(90deg); }
            50% { transform: translate(0, 100px) rotate(180deg); }
            75% { transform: translate(-50px, 50px) rotate(270deg); }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(15, 15, 26, 0.95);
            
            padding: 15px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
           
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

      

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            gap: 15px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid 
           ;
        }

        .btn-outline:hover {
            
            background: rgba(139, 92, 246, 0.1);
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
        }

        .btn-large {
            padding: 18px 40px;
            font-size: 17px;
            border-radius: 14px;
        }

        /* Mobile Navigation */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--light-text);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 30px;
            font-size: 14px;
            font-weight: 500;
        }

        

        .hero-title {
            
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .hero-title .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
           
        }

        .hero-description {
            font-size: 19px;
            
            margin-bottom: 40px;
            max-width: 540px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
        }

        .hero-stats {
            display: flex;
            gap: 50px;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 14px;
            color: var(--muted-text);
        }

        .hero-visual {
            position: relative;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--glow-shadow);
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid var(--border-color);
            border-radius: 24px;
            z-index: 1;
            pointer-events: none;
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .floating-card {
            position: absolute;
            background: var(--dark-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--card-shadow);
            animation: floatCard 4s infinite ease-in-out;
        }

        .floating-card.card-1 {
            top: 20%;
            left: -60px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 20%;
            right: -60px;
            animation-delay: -2s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-card-icon {
            width: 45px;
            height: 45px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .floating-card-title {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .floating-card-value {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-purple);
        }

        /* Features Section */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid var(--border-color);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-purple);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--muted-text);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--dark-surface);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-purple);
            box-shadow: var(--hover-shadow);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }

        .feature-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--muted-text);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Highlight Section */
        .highlight-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .highlight-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .highlight-content h2 {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .highlight-content p {
            color: var(--muted-text);
            font-size: 17px;
            margin-bottom: 30px;
        }

        .highlight-list {
            list-style: none;
        }

        .highlight-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .highlight-list i {
            width: 26px;
            height: 26px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .highlight-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }

        .highlight-image img {
            width: 100%;
            height: auto;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .pricing-card {
            background: var(--dark-surface);
            border: 1px solid var(--border-color);
            border-radius: 28px;
            padding: 45px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
            border-color: var(--primary-purple);
            transform: scale(1.05);
            box-shadow: var(--glow-shadow);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-gradient);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .pricing-price {
            font-family: var(--font-heading);
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .pricing-price span {
            font-size: 18px;
            font-weight: 400;
            color: var(--muted-text);
        }

        .pricing-description {
            color: var(--muted-text);
            font-size: 14px;
            margin-bottom: 30px;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 35px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features i {
            color: var(--primary-purple);
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--dark-surface);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 35px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: var(--primary-purple);
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-rating i {
            color: #fbbf24;
        }

        .testimonial-text {
            color: var(--muted-text);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 15px;
        }

        .testimonial-role {
            color: var(--muted-text);
            font-size: 13px;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 100px 0;
            position: relative;
        }

        .cta-box {
            background: var(--primary-gradient);
            border-radius: 32px;
            padding: 80px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
            background-size: 100px 100px;
            opacity: 0.3;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }

        .cta-description {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 40px;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            position: relative;
        }

        .btn-white {
            background: white;
            color: var(--primary-purple);
        }

        .btn-white:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* Footer */
        .footer {
            background: var(--dark-surface);
            border-top: 1px solid var(--border-color);
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand .logo {
            margin-bottom: 25px;
        }

        .footer-brand p {
            color: var(--muted-text);
            font-size: 14px;
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: var(--dark-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted-text);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
        }

        .footer-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--muted-text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-purple);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            color: var(--muted-text);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: var(--muted-text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-purple);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 52px;
            }
            
            .section-title {
                font-size: 40px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content {
                order: 1;
            }
            
            .hero-visual {
                order: 2;
            }
            
            .hero-description {
                margin: 0 auto 40px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 40px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-box {
                padding: 50px 30px;
            }
            
            .cta-title {
                font-size: 32px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .floating-card {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .nav-container,
            .hero-container,
            .section-container {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-large {
                width: 100%;
                justify-content: center;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
        }
    </style>/* End custom CSS */