
        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #818cf8;
            --secondary: #0ea5e9;
            --accent: #f59e0b;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --gray-900: #111827;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-500: #6b7280;
            --gray-400: #9ca3af;
            --gray-300: #d1d5db;
            --gray-200: #e5e7eb;
            --gray-100: #f3f4f6;
            --gray-50: #f9fafb;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
            --gradient-2: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
            --gradient-3: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .text-gradient {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--gray-600);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
        }

        .btn-lg {
            padding: 18px 36px;
            font-size: 18px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-800);
            padding: 12px 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-300);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-actions .btn {
            padding: 10px 20px;
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-20px, -20px) rotate(5deg); }
        }

        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: -1;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-light);
            margin-bottom: 24px;
        }

        .hero-badge i {
            font-size: 12px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--gray-400);
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .hero-price {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            padding: 20px 24px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 16px;
        }

        .hero-price-icon {
            width: 48px;
            height: 48px;
            background: var(--success);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .hero-price-text h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--success);
            margin-bottom: 4px;
        }

        .hero-price-text p {
            font-size: 14px;
            color: var(--gray-400);
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
        }

        .dashboard-preview {
            position: relative;
            background: var(--dark-light);
            border-radius: 24px;
            border: 1px solid var(--gray-700);
            overflow: hidden;
            box-shadow: var(--shadow-2xl), var(--shadow-glow);
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s ease;
        }

        .dashboard-preview:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 20px;
            background: var(--gray-800);
            border-bottom: 1px solid var(--gray-700);
        }

        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dashboard-dot.red { background: #ef4444; }
        .dashboard-dot.yellow { background: #f59e0b; }
        .dashboard-dot.green { background: #10b981; }

        .dashboard-content {
            padding: 24px;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .dashboard-card {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid var(--gray-700);
        }

        .dashboard-card-label {
            font-size: 12px;
            color: var(--gray-500);
            margin-bottom: 8px;
        }

        .dashboard-card-value {
            font-size: 24px;
            font-weight: 700;
        }

        .dashboard-card-value.green { color: var(--success); }
        .dashboard-card-value.blue { color: var(--secondary); }
        .dashboard-card-value.purple { color: var(--primary); }

        .dashboard-chart {
            background: var(--gray-800);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--gray-700);
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 100px;
            margin-top: 16px;
        }

        .chart-bar {
            flex: 1;
            background: var(--gradient-1);
            border-radius: 4px 4px 0 0;
            transition: height 0.5s ease;
        }

        .floating-card {
            position: absolute;
            background: var(--dark-light);
            border: 1px solid var(--gray-700);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: var(--shadow-xl);
            animation: float-card 4s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 20px;
            right: -40px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 40px;
            left: -40px;
            animation-delay: 2s;
        }

        @keyframes float-card {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card i {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .floating-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .floating-card p {
            font-size: 12px;
            color: var(--gray-500);
        }

        /* Trusted By Section */
        .trusted {
            padding: 60px 0;
            border-top: 1px solid var(--gray-800);
            border-bottom: 1px solid var(--gray-800);
            background: rgba(30, 41, 59, 0.3);
        }

        .trusted-title {
            text-align: center;
            font-size: 14px;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 32px;
        }

        .trusted-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .trusted-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--gray-600);
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .trusted-logo:hover {
            opacity: 1;
        }

        /* Problem Section */
        .problem {
            padding: 120px 0;
            position: relative;
        }

        .problem .container {
            text-align: center;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .problem-card {
            background: var(--dark-light);
            border: 1px solid var(--gray-800);
            border-radius: 20px;
            padding: 32px;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--danger);
        }

        .problem-card:hover {
            transform: translateY(-5px);
            border-color: var(--gray-700);
        }

        .problem-icon {
            width: 56px;
            height: 56px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--danger);
            margin-bottom: 20px;
        }

        .problem-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .problem-card p {
            color: var(--gray-400);
            font-size: 15px;
        }

        .problem-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .problem-vs-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 24px;
            background: var(--dark-light);
            border: 1px solid var(--gray-800);
            border-radius: 12px;
        }

        .problem-vs-item.bad {
            border-color: rgba(239, 68, 68, 0.3);
            text-decoration: line-through;
            opacity: 0.6;
        }

        .problem-vs-item.good {
            border-color: rgba(16, 185, 129, 0.3);
            background: rgba(16, 185, 129, 0.05);
        }

        .problem-vs-item i {
            font-size: 20px;
        }

        .problem-vs-item.bad i { color: var(--danger); }
        .problem-vs-item.good i { color: var(--success); }

        /* How It Works */
        .how-it-works {
            padding: 120px 0;
            background: var(--dark-light);
            position: relative;
        }

        .how-it-works .container {
            text-align: center;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 15%;
            right: 15%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 0;
        }

        .step-card {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            margin: 0 auto 24px;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            opacity: 0.3;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--dark);
            border: 1px solid var(--gray-700);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
            color: var(--primary-light);
            transition: all 0.3s ease;
        }

        .step-card:hover .step-icon {
            transform: scale(1.1);
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing {
            padding: 120px 0;
            position: relative;
        }

        .pricing .container {
            text-align: center;
        }

        .pricing-toggle {
            display: inline-flex;
            background: var(--dark-light);
            border: 1px solid var(--gray-700);
            border-radius: 50px;
            padding: 6px;
            margin-bottom: 60px;
        }

        .pricing-toggle-btn {
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background: transparent;
            color: var(--gray-400);
        }

        .pricing-toggle-btn.active {
            background: var(--gradient-1);
            color: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--dark-light);
            border: 1px solid var(--gray-800);
            border-radius: 24px;
            padding: 40px;
            text-align: left;
            position: relative;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--gray-700);
        }

        .pricing-card.popular {
            border-color: var(--primary);
            background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--dark-light) 100%);
        }

        .pricing-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .pricing-card-header {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--gray-800);
        }

        .pricing-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pricing-card-desc {
            font-size: 14px;
            color: var(--gray-500);
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }

        .pricing-currency {
            font-size: 24px;
            font-weight: 600;
            color: var(--gray-400);
        }

        .pricing-value {
            font-size: 56px;
            font-weight: 800;
            line-height: 1;
        }

        .pricing-period {
            font-size: 16px;
            color: var(--gray-500);
        }

        .pricing-setup {
            font-size: 14px;
            color: var(--success);
            margin-bottom: 24px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 14px;
            color: var(--gray-300);
        }

        .pricing-features li i {
            color: var(--success);
            font-size: 16px;
            margin-top: 2px;
        }

        .pricing-card .btn {
            width: 100%;
        }

        /* Industries Section */
        .industries {
            padding: 120px 0;
            background: var(--dark-light);
        }

        .industries .container {
            text-align: center;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .industry-card {
            background: var(--dark);
            border: 1px solid var(--gray-800);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.05);
        }

        .industry-icon {
            width: 64px;
            height: 64px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
            color: var(--primary-light);
        }

        .industry-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .industry-card p {
            font-size: 13px;
            color: var(--gray-500);
        }

        /* Features Section */
        .features {
            padding: 120px 0;
        }

        .features .container {
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .feature-card {
            background: var(--dark-light);
            border: 1px solid var(--gray-800);
            border-radius: 20px;
            padding: 32px;
            text-align: left;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--gray-700);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-light);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: var(--dark-light);
        }

        .testimonials .container {
            text-align: center;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: var(--dark);
            border: 1px solid var(--gray-800);
            border-radius: 20px;
        padding: 32px;
        text-align: left;
    }

    .testimonial-stars {
        color: var(--accent);
        font-size: 14px;
        margin-bottom: 16px;
    }

    .testimonial-text {
        font-size: 15px;
        color: var(--gray-300);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        background: var(--gradient-1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
    }

    .testimonial-info h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .testimonial-info p {
        font-size: 13px;
        color: var(--gray-500);
    }

    /* FAQ Section */
    .faq {
        padding: 120px 0;
    }

    .faq .container {
        max-width: 800px;
        text-align: center;
    }

    .faq-list {
        margin-top: 60px;
        text-align: left;
    }

    .faq-item {
        background: var(--dark-light);
        border: 1px solid var(--gray-800);
        border-radius: 16px;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px;
        cursor: pointer;
        font-weight: 600;
        font-size: 16px;
    }

    .faq-question i {
        transition: transform 0.3s ease;
        color: var(--gray-500);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0 24px 24px;
    }

    .faq-answer p {
        color: var(--gray-400);
        font-size: 15px;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta {
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }

    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-1);
        opacity: 0.1;
    }

    .cta .container {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .cta-title {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .cta-subtitle {
        font-size: 18px;
        color: var(--gray-400);
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 80px 0 40px;
        background: var(--dark-light);
        border-top: 1px solid var(--gray-800);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 60px;
    }

    .footer-brand .logo {
        margin-bottom: 16px;
    }

    .footer-brand p {
        color: var(--gray-500);
        font-size: 14px;
        margin-bottom: 24px;
    }

    .footer-social {
        display: flex;
        gap: 12px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        background: var(--gray-800);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-400);
        transition: all 0.3s ease;
    }

    .footer-social a:hover {
        background: var(--primary);
        color: var(--white);
    }

    .footer-column h4 {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        color: var(--gray-300);
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column li {
        margin-bottom: 12px;
    }

    .footer-column a {
        color: var(--gray-500);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-column a:hover {
        color: var(--white);
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 40px;
        border-top: 1px solid var(--gray-800);
    }

    .footer-bottom p {
        color: var(--gray-500);
        font-size: 14px;
    }

    .footer-bottom-links {
        display: flex;
        gap: 24px;
    }

    .footer-bottom-links a {
        color: var(--gray-500);
        text-decoration: none;
        font-size: 14px;
    }

    /* Calculator Widget */
    .calculator {
        padding: 120px 0;
        background: var(--dark-light);
    }

    .calculator .container {
        max-width: 800px;
    }

    .calculator-box {
        background: var(--dark);
        border: 1px solid var(--gray-700);
        border-radius: 24px;
        padding: 48px;
    }

    .calculator-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .calculator-header h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .calculator-header p {
        color: var(--gray-400);
    }

    .calculator-field {
        margin-bottom: 32px;
    }

    .calculator-field label {
        display: block;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .calculator-slider {
        position: relative;
    }

    .calculator-slider input[type="range"] {
        width: 100%;
        height: 8px;
        background: var(--gray-700);
        border-radius: 4px;
        outline: none;
        -webkit-appearance: none;
    }

    .calculator-slider input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 24px;
        height: 24px;
        background: var(--gradient-1);
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
    }

    .calculator-values {
        display: flex;
        justify-content: space-between;
        margin-top: 12px;
        font-size: 14px;
        color: var(--gray-500);
    }

    .calculator-result {
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        border-radius: 16px;
        padding: 32px;
        text-align: center;
    }

    .calculator-result h3 {
        font-size: 14px;
        color: var(--gray-400);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .calculator-result-value {
        font-size: 48px;
        font-weight: 800;
        color: var(--primary-light);
        margin-bottom: 8px;
    }

    .calculator-result p {
        font-size: 14px;
        color: var(--gray-500);
    }

    .calculator-breakdown {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 24px;
    }

    .breakdown-item {
        background: var(--dark);
        border-radius: 12px;
        padding: 16px;
    }

    .breakdown-item span {
        display: block;
        font-size: 12px;
        color: var(--gray-500);
        margin-bottom: 4px;
    }

    .breakdown-item strong {
        font-size: 18px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero .container {
            grid-template-columns: 1fr;
            gap: 60px;
        }
        
        .hero-visual {
            max-width: 500px;
            margin: 0 auto;
        }

        .dashboard-preview {
            transform: none;
        }

        .floating-card-1 {
            right: 0;
        }

        .floating-card-2 {
            left: 0;
        }

        .hero-title {
            font-size: 48px;
        }

        .steps-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .steps-grid::before {
            display: none;
        }

        .pricing-grid,
        .features-grid,
        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .industries-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .footer-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: flex;
        }

        .hero-title {
            font-size: 36px;
        }

        .section-title {
            font-size: 32px;
        }

        .hero-cta {
            flex-direction: column;
        }

        .hero-stats {
            gap: 24px;
        }

        .problem-grid,
        .pricing-grid,
        .features-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .steps-grid {
            grid-template-columns: 1fr;
        }

        .industries-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .cta-title {
            font-size: 32px;
        }

        .cta-buttons {
            flex-direction: column;
        }
    }
    
   /* ========================================
   WHATSAPP WIDGET STYLES
   ======================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.wa-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.wa-float-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float-btn i {
    font-size: 24px;
}

.wa-notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.wa-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.wa-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-chat-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    position: relative;
}

.wa-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.wa-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border: 2px solid #128C7E;
    border-radius: 50%;
}

.wa-header-text h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.wa-header-text p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

.wa-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.wa-close-btn:hover {
    background: rgba(255,255,255,0.3);
}

.wa-chat-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4ccc4' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    min-height: 200px;
}

.wa-message {
    background: white;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.wa-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.wa-message p {
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.wa-message p:last-of-type {
    margin-bottom: 4px;
}

.wa-time {
    font-size: 11px;
    color: #9ca3af;
    display: block;
    text-align: right;
}

.wa-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.wa-quick-btn {
    background: white;
    border: 1px solid #25D366;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #128C7E;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wa-quick-btn:hover {
    background: #25D366;
    color: white;
}

.wa-chat-footer {
    padding: 12px 16px;
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
}

.wa-chat-footer form {
    display: flex;
    gap: 10px;
}

.wa-chat-footer input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.wa-chat-footer input:focus {
    border-color: #25D366;
}

.wa-chat-footer button {
    width: 44px;
    height: 44px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.wa-chat-footer button:hover {
    background: #128C7E;
}

/* ========================================
   POPUP OVERLAY & CONTAINER STYLES
   ======================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

/* Exit Popup Specific */
.exit-popup .popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.popup-left {
    padding: 48px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.popup-left h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.popup-left p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.popup-benefits {
    list-style: none;
}

.popup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-300);
}

.popup-benefits li i {
    color: var(--success);
    font-size: 18px;
}

.popup-right {
    padding: 48px;
    background: var(--dark);
}

.popup-right h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.popup-form .form-group {
    margin-bottom: 16px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: var(--gray-500);
}

.popup-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.popup-form select option {
    background: var(--dark);
    color: var(--white);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 16px;
}

.form-note i {
    margin-right: 6px;
}

/* Offer Popup Specific */
.offer-popup {
    max-width: 500px;
    text-align: center;
}

.offer-content {
    padding: 48px;
}

.offer-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.offer-content > p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.timer-block {
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 70px;
}

.timer-block span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-light);
}

.timer-block label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
}

.timer-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-500);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
    padding: 16px 20px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    outline: none;
}

.form-row .btn {
    white-space: nowrap;
}

.offer-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.offer-features span {
    font-size: 13px;
    color: var(--gray-500);
}

.offer-features i {
    color: var(--success);
    margin-right: 6px;
}

/* ========================================
   STICKY ENQUIRY FORM
   ======================================== */
.sticky-enquiry {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9990;
}

.sticky-tab {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg) translateX(50%);
    transform-origin: right center;
    background: var(--gradient-1);
    border: none;
    padding: 12px 24px;
    border-radius: 8px 8px 0 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.sticky-tab:hover {
    padding: 14px 28px;
}

.sticky-form-container {
    position: absolute;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    background: var(--dark-light);
    border: 1px solid var(--gray-700);
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    transition: right 0.4s ease;
}

.sticky-form-container.active {
    right: 60px;
}

.sticky-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-800);
}

.sticky-form-header h3 {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-form-header h3 i {
    color: var(--primary);
}

.sticky-form-close {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.sticky-form {
    padding: 24px;
}

.sticky-form .form-group {
    margin-bottom: 16px;
}

.sticky-form input,
.sticky-form select,
.sticky-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark);
    border: 1px solid var(--gray-700);
    border-radius: 10px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.sticky-form input:focus,
.sticky-form select:focus,
.sticky-form textarea:focus {
    border-color: var(--primary);
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-light);
    border-top: 1px solid var(--gray-700);
    padding: 12px 16px;
    z-index: 9990;
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
}

.mobile-cta-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
}

.mobile-cta-subtext {
    font-size: 12px;
    color: var(--gray-500);
}

.mobile-cta-content .btn {
    padding: 12px 24px;
    font-size: 14px;
}

/* ========================================
   CALL FLOATING BUTTON
   ======================================== */
.call-float-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float-btn:hover {
    transform: scale(1.1);
}

/* ========================================
   SUCCESS MODAL
   ======================================== */
.success-modal {
    max-width: 450px;
    text-align: center;
}

.success-content {
    padding: 48px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i {
    font-size: 40px;
    color: var(--success);
}

.success-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-content > p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.success-next-steps {
    background: var(--dark);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.success-next-steps h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.success-next-steps ul {
    list-style: none;
}

.success-next-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-300);
}

.success-next-steps li i {
    width: 24px;
    color: var(--primary);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
    .wa-float-btn .wa-btn-text {
        display: none;
    }
    
    .wa-float-btn {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
    }
    
    .wa-chat-box {
        width: calc(100vw - 32px);
        right: -8px;
        bottom: 70px;
    }
    
    .exit-popup .popup-content {
        grid-template-columns: 1fr;
    }
    
    .popup-left, .popup-right {
        padding: 32px;
    }
    
    .popup-left {
        padding-bottom: 0;
    }
    
    .sticky-enquiry {
        display: none;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .whatsapp-widget {
        bottom: 80px;
    }
    
    .call-float-btn {
        bottom: 80px;
    }
}