 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        .header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.25rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(124, 58, 237, 0.2);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .header-cta {
            background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
            color: #ffffff;
            padding: 0.75rem 1.75rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(124, 58, 237, 0.6);
        }

        .hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0b2e 50%, #0a0a0a 100%);
            padding: 6rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            letter-spacing: -2px;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #7c3aed 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            font-weight: 400;
            color: #d1d5db;
        }

        .cta-primary {
            background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
            color: #ffffff;
            padding: 1.25rem 3rem;
            font-size: 1.2rem;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
            margin-right: 1rem;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(124, 58, 237, 0.7);
        }

        .cta-secondary {
            background: transparent;
            color: #06b6d4;
            padding: 1.25rem 3rem;
            font-size: 1.2rem;
            border: 2px solid #06b6d4;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-secondary:hover {
            background: rgba(6, 182, 212, 0.1);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #06b6d4;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dashboard-preview {
            max-width: 1200px;
            margin: 4rem auto 0;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .dashboard-mockup {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
            backdrop-filter: blur(10px);
        }

        .dashboard-header {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .dashboard-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ef4444;
            animation: blink 2s ease-in-out infinite;
        }

        .dashboard-dot:nth-child(2) {
            background: #f59e0b;
            animation-delay: 0.2s;
        }

        .dashboard-dot:nth-child(3) {
            background: #10b981;
            animation-delay: 0.4s;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .dashboard-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .dashboard-card {
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid rgba(124, 58, 237, 0.2);
            border-radius: 8px;
            padding: 1.5rem;
            height: 120px;
            position: relative;
            overflow: hidden;
        }

        .dashboard-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #ffffff 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #9ca3af;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .pain-solutions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pain-card {
            background: linear-gradient(135deg, rgba(26, 11, 46, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed 0%, #06b6d4 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .pain-card:hover::before {
            transform: scaleX(1);
        }

        .pain-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
            border-color: #7c3aed;
        }

        .pain-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .pain-title {
            font-size: 1.5rem;
            color: #ef4444;
            margin-bottom: 0.75rem;
            font-weight: 700;
            text-decoration: line-through;
        }

        .solution-title {
            font-size: 1.5rem;
            color: #10b981;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .solution-description {
            color: #d1d5db;
            line-height: 1.8;
        }

        .demo-section {
            background: linear-gradient(135deg, #1a0b2e 0%, #0a0a0a 100%);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .demo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
        }

        .demo-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .case-studies {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .case-card {
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 16px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }

        .case-card:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
        }

        .case-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #06b6d4;
            margin-bottom: 1.5rem;
        }

        .case-result {
            font-size: 2.5rem;
            font-weight: 800;
            color: #10b981;
            margin-bottom: 0.5rem;
        }

        .case-metric {
            font-size: 1.1rem;
            color: #9ca3af;
            margin-bottom: 1.5rem;
        }

        .case-quote {
            font-style: italic;
            color: #d1d5db;
            line-height: 1.8;
            border-left: 3px solid #7c3aed;
            padding-left: 1.5rem;
        }

        .pricing-section {
            background: #0a0a0a;
            padding: 6rem 2rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: linear-gradient(135deg, rgba(26, 11, 46, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card.featured {
            border-color: #7c3aed;
            box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
            transform: scale(1.05);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
        }

        .pricing-tier {
            font-size: 1.3rem;
            font-weight: 700;
            color: #06b6d4;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: #9ca3af;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin: 2rem 0;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: #d1d5db;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pricing-features li::before {
            content: "✓";
            color: #10b981;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .pricing-cta {
            width: 100%;
            background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
            color: #ffffff;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .pricing-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
        }

        .faq-section {
            background: linear-gradient(135deg, #1a0b2e 0%, #0a0a0a 100%);
            padding: 6rem 2rem;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid rgba(124, 58, 237, 0.3);
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #7c3aed;
        }

        .faq-question {
            padding: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #06b6d4;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #d1d5db;
            line-height: 1.8;
        }

        .footer {
            background: #0a0a0a;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(124, 58, 237, 0.2);
        }

        .footer-cta {
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .footer-cta h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section {
                padding: 4rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .dashboard-content {
                grid-template-columns: 1fr;
            }

            .cta-primary, .cta-secondary {
                display: block;
                margin: 0.5rem 0;
            }
        }


        