        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
        }

        /* Navigation */
        nav {
            background: #fff;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            position: relative;
            width: 120px;
            max-height: 44px;
            left: 0px;
            background-size: contain;
            font-size: 1.5rem;
            font-weight: 700;
            color: #5046e5;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #1a1a1a;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #5046e5;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-toggle::after {
            content: '▼';
            font-size: 0.7rem;
            margin-left: 0.3rem;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 250px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            padding: 1rem 0;
            display: none;
            margin-top: 0.5rem;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1.5rem;
            color: #1a1a1a;
            text-decoration: none;
            transition: background 0.3s;
            font-size: 0.9rem;
        }

        .dropdown-item:hover {
            background: #f5f5ff;
            color: #5046e5;
        }

        .cta-button {
            background: #5046e5;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #3d36c4;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f7ff 0%, #e8e6ff 100%);
            padding: 5rem 2rem;
            text-align: center;
        }

        .hero-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            color: #4a4a4a;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #5046e5;
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: #3d36c4;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #fff;
            color: #5046e5;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid #5046e5;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #f5f5ff;
            transform: translateY(-2px);
        }

        /* Badges Section */
        .badges {
            padding: 3rem 2rem;
            text-align: center;
            background: #fff;
        }

        .badges-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .badge {
            background: #f8f7ff;
            padding: 1.5rem;
            border-radius: 10px;
            width: 180px;
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: #fff;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .feature-card {
            padding: 2rem;
            border-radius: 12px;
            background: #f8f7ff;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(80, 70, 229, 0.1);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            color: #5046e5;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #4a4a4a;
            line-height: 1.8;
        }

        /* Industries Section */
        .industries {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8f7ff 0%, #e8e6ff 100%);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .industry-card {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .industry-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .industry-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Integrations */
        .integrations {
            padding: 5rem 2rem;
            background: #fff;
            text-align: center;
        }

        .integration-logos {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 3rem auto;
        }

        .integration-logo {
            width: 120px;
            height: 60px;
            background: #f8f7ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #5046e5;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #5046e5;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #5046e5;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }

        /* Page Content Styles */
        .page-content {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-content h1 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }

        .page-content h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            color: #1a1a1a;
        }

        .page-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 1.5rem;
        }

        .content-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #e8e6ff 0%, #f8f7ff 100%);
            border-radius: 12px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #5046e5;
            font-weight: 600;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1a1a1a;
        }

        /* Responsive */
        @media (max-width: 968px) {
            nav {
                padding: 1rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                gap: 0;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-link {
                display: block;
                padding: 1rem;
            }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                background: #f8f7ff;
                margin-top: 0;
                border-radius: 0;
            }

            .dropdown:hover .dropdown-menu {
                display: none;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .cta-button {
                display: block;
                text-align: center;
                margin: 1rem;
            }

            .hero {
                padding: 3rem 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            .badges {
                padding: 2rem 1rem;
            }

            .badges-container {
                gap: 1rem;
            }

            .badge {
                width: 150px;
                padding: 1rem;
                font-size: 0.85rem;
            }

            .features, .industries {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 1.75rem;
                margin-bottom: 2rem;
            }

            .feature-grid, .industries-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card, .industry-card {
                padding: 1.5rem;
            }

            .integrations {
                padding: 3rem 1rem;
            }

            .integration-logos {
                gap: 1rem;
            }

            .integration-logo {
                width: 100px;
                height: 50px;
                font-size: 0.8rem;
            }

            .page-content {
                padding: 2rem 1rem;
            }

            .page-content h1 {
                font-size: 1.75rem;
            }

            .page-content h2 {
                font-size: 1.5rem;
                margin: 2rem 0 1rem;
            }

            .page-content p {
                font-size: 1rem;
            }

            .content-image {
                height: 250px;
                font-size: 1rem;
            }

            footer {
                padding: 3rem 1rem 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-section {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .badges-container {
                flex-direction: column;
                align-items: center;
            }

            .badge {
                width: 100%;
                max-width: 250px;
            }
        }