        :root {
            --primary-color: #9ae454;
            --primary-dark: #7bc442;
            --bg-color: #f5f7fa;
            --dark-bg: #404040;
            --darker-bg: #2a2a2a;
            --text-color: #333;
            --text-light: rgba(255, 255, 255, 0.8);
            --border-color: #e1e4e8;
            --code-bg: #f6f8fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--bg-color);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--dark-bg);
            padding: 0 2rem;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
            width: auto;
        }

        .navbar-brand h1 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin: 0;
        }

        .navbar-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .navbar-links a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .navbar-links a:hover {
            color: #fff;
        }

        .navbar-links .btn-primary {
            color: #333;
        }

        .navbar-links .btn-primary:hover {
            color: #333;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s;
            cursor: pointer;
            background: none;
            border: none;
            font-weight: inherit;
            font-family: inherit;
        }

        .dropdown-toggle:hover {
            color: #fff;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--darker-bg);
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            border-radius: 6px;
            margin-top: 0;
            padding-top: 0.5rem;
            z-index: 1002;
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--primary-color);
            text-decoration: none;
            transition: background 0.2s;
        }

        .dropdown-content a:hover {
            background: rgba(154, 228, 84, 0.1);
            color: #fff;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary-color);
            color: #333;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(154, 228, 84, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background: rgba(154, 228, 84, 0.1);
        }

        .btn-large {
            padding: 16px 36px;
            font-size: 1.1rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            color: white;
            padding: 160px 2rem 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(154, 228, 84, 0.1) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero .tagline {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .hero .subtitle {
            font-size: 1.1rem;
            color: rgba(154, 228, 84, 0.9);
            margin-bottom: 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Sections */
        section {
            padding: 80px 2rem;
        }

        .section-dark {
            background: var(--dark-bg);
            color: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: inherit;
        }

        .section-dark .section-header h2 {
            color: var(--primary-color);
        }

        .section-header p {
            color: #666;
            font-size: 1.1rem;
        }

        .section-dark .section-header p {
            color: rgba(255, 255, 255, 0.7);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Provider Grid */
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .provider-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .provider-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .provider-card .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .provider-card h4 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .provider-card p {
            color: #666;
            font-size: 0.85rem;
            margin: 0;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .section-dark .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(154, 228, 84, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .section-dark .feature-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(154, 228, 84, 0.1);
        }

        .feature-card .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
        }

        .section-dark .feature-card h3 {
            color: var(--primary-color);
        }

        .feature-card p {
            color: #666;
            margin-bottom: 1rem;
        }

        .section-dark .feature-card p {
            color: rgba(255, 255, 255, 0.7);
        }

        .feature-card ul {
            list-style: none;
            padding: 0;
        }

        .feature-card ul li {
            padding: 0.3rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #555;
        }

        .section-dark .feature-card ul li {
            color: rgba(255, 255, 255, 0.6);
        }

        .feature-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        /* Pipeline Section */
        .pipeline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 3rem 0;
        }

        .pipeline-step {
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--border-color);
            min-width: 150px;
            position: relative;
        }

        .pipeline-step .number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--dark-bg);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .pipeline-step .icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .pipeline-step h4 {
            color: var(--dark-bg);
            margin-bottom: 0.25rem;
        }

        .pipeline-step p {
            color: #666;
            font-size: 0.8rem;
            margin: 0;
        }

        .pipeline-arrow {
            color: var(--primary-color);
            font-size: 2rem;
        }

        /* Pricing Section */
        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            max-width: 500px;
            margin: 0 auto;
            text-align: center;
            border: 2px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: 'EARLY BIRD';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary-color);
            color: var(--dark-bg);
            padding: 5px 40px;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(45deg);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            color: var(--dark-bg);
            margin-bottom: 0.5rem;
        }

        .pricing-card .price {
            margin: 1.5rem 0;
        }

        .pricing-card .price .original {
            text-decoration: line-through;
            color: #999;
            font-size: 1.5rem;
        }

        .pricing-card .price .current {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .pricing-card .price .period {
            color: #666;
            font-size: 1rem;
        }

        .pricing-features {
            text-align: left;
            margin: 2rem 0;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid var(--border-color);
            list-style: none;
        }

        .pricing-features li::before {
            content: '✅';
            position: absolute;
            left: 0;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(154, 228, 84, 0.2);
        }

        .testimonial-card p {
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .testimonial-author {
            color: var(--primary-color);
            font-weight: 600;
        }

        .testimonial-role {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
            color: #333;
        }

        .comparison-table th {
            background: var(--dark-bg);
            color: var(--primary-color);
            font-weight: 600;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:nth-child(even) {
            background: rgba(154, 228, 84, 0.05);
        }

        .comparison-table .check {
            color: var(--primary-dark);
            font-weight: bold;
        }

        .comparison-table .cross {
            color: #e74c3c;
        }

        .comparison-table .partial {
            color: #f39c12;
        }

        /* FAQ Section */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1.5rem;
        }

        .faq-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .faq-item h4 {
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .faq-item p {
            color: #666;
            margin: 0;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--dark-bg);
            text-align: center;
            padding: 80px 2rem;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-section .btn {
            background: var(--dark-bg);
            color: var(--primary-color);
        }

        .cta-section .btn:hover {
            background: var(--darker-bg);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 2rem 30px;
        }

        .footer-title {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-title img {
            height: 25px;
            vertical-align: middle;
            width: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .footer-section h4 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            padding: 0.3rem 0;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-color);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 0 1rem;
            }

            .navbar-links {
                display: none;
            }

            .hero {
                padding: 120px 1rem 60px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero .tagline {
                font-size: 1.1rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            section {
                padding: 50px 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .pipeline-arrow {
                transform: rotate(90deg);
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }
