:root {
            --primary-font: 'Chivo', sans-serif;
            --secondary-font: 'Noto Sans', sans-serif;
            --color-primary: #006d77;
            --color-gray-900: #101828;
            --color-gray-500: #667085;
            --color-gray-100: #f2f4f7;
            --color-white: #fff;
        }

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

        body {
            font-family: var(--secondary-font);
            color: var(--color-gray-900);
            background: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

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

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 35%, rgba(30, 64, 175, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 75% 65%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.2) 0%, transparent 50%);
            animation: pulse 12s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.85; transform: scale(1.03); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .badge-ai {
            background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 30px;
            animation: glow 2.5s ease-in-out infinite;
            box-shadow: 0 0 40px rgba(8, 145, 178, 0.6);
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 40px rgba(8, 145, 178, 0.6), 0 0 80px rgba(8, 145, 178, 0.4); }
            50% { box-shadow: 0 0 60px rgba(8, 145, 178, 0.9), 0 0 120px rgba(8, 145, 178, 0.6); }
        }

        .hero-section h1 {
            font-family: var(--primary-font);
            font-size: 78px;
            font-weight: 900;
            line-height: 1.1;
            color: white;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease-out;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-section h1 .gradient-text {
            background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .hero-section .lead-text {
            font-size: 24px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 50px;
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
            color: white;
            padding: 20px 45px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(8, 145, 178, 0.5);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(8, 145, 178, 0.7);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 20px 45px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            border-color: rgba(8, 145, 178, 0.6);
        }

        /* Integration Animation */
        .integration-animation {
            position: absolute;
            top: 15%;
            right: 8%;
            width: 450px;
            height: 450px;
            animation: float 7s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-35px) rotate(5deg); }
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(180deg, #3b82f6 0%, #1e40af 100%);
            padding: 80px 0;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 68px;
            font-weight: 900;
            background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            font-family: var(--primary-font);
        }

        .stat-label {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .stat-description {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Integration Categories Section */
        .categories-section {
            background: white;
            padding: 100px 0;
        }

        .section-title {
            font-family: var(--primary-font);
            font-size: 56px;
            font-weight: 700;
            color: var(--color-gray-900);
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--color-gray-500);
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .category-card {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 24px;
            padding: 45px 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .category-card:hover::before {
            transform: scale(1);
        }

        .category-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(30, 64, 175, 0.3);
            border-color: #1e40af;
        }

        .category-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 46px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .category-card:hover .category-icon {
            transform: scale(1.15) rotate(-8deg);
        }

        .category-card h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 15px;
            font-family: var(--primary-font);
            position: relative;
            z-index: 2;
        }

        .category-card p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--color-gray-900);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .category-list li {
            padding: 8px 0;
            font-size: 15px;
            color: var(--color-gray-900);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .category-list li::before {
            content: '→';
            color: #1e40af;
            font-weight: 700;
            font-size: 18px;
        }

        /* API Features Section */
        .api-features-section {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .api-features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(8,145,178,0.3)"/></svg>');
            animation: patternFloat 30s linear infinite;
        }

        @keyframes patternFloat {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .api-features-section .section-title,
        .api-features-section .section-subtitle {
            color: white;
            position: relative;
            z-index: 2;
        }

        .api-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .api-feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            padding: 45px 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .api-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0891b2 0%, #06b6d4 100%);
        }

        .api-feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(8, 145, 178, 0.6);
            box-shadow: 0 25px 60px rgba(8, 145, 178, 0.4);
        }

        .api-feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 46px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .api-feature-card:hover .api-feature-icon {
            transform: scale(1.1) rotate(8deg);
        }

        .api-feature-card h3 {
            font-size: 26px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            font-family: var(--primary-font);
        }

        .api-feature-card p {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .api-feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .api-feature-list li {
            padding: 8px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .api-feature-list li::before {
            content: '✓';
            color: #0891b2;
            font-weight: 700;
            font-size: 18px;
        }

        /* Popular Integrations Section */
        .integrations-section {
            background: linear-gradient(180deg, #f2f4f7 0%, white 100%);
            padding: 100px 0;
        }

        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .integration-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .integration-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
            border-color: #1e40af;
        }

        .integration-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .integration-card:hover .integration-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .integration-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 12px;
        }

        .integration-card p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-gray-500);
        }

        /* Benefits Section */
        .benefits-section {
            background: white;
            padding: 100px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
            border-radius: 20px;
            padding: 40px 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .benefit-card:hover::before {
            transform: scale(1);
        }

        .benefit-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(30, 64, 175, 0.3);
        }

        .benefit-card h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .benefit-card p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--color-gray-900);
            position: relative;
            z-index: 2;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(8, 145, 178, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float-cta 10s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float-cta 12s ease-in-out infinite reverse;
        }

        @keyframes float-cta {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(40px, -40px) scale(1.1); }
        }

        .cta-section h2 {
            font-size: 52px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            font-family: var(--primary-font);
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        .btn-cta {
            background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
            color: white;
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(8, 145, 178, 0.5);
            position: relative;
            z-index: 2;
        }

        .btn-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(8, 145, 178, 0.7);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-reveal {
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 52px;
            }

            .section-title {
                font-size: 42px;
            }

            .categories-grid,
            .api-features-grid,
            .integrations-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .integration-animation {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 38px;
            }

            .hero-section .lead-text {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .cta-section h2 {
                font-size: 36px;
            }

            .cta-section p {
                font-size: 18px;
            }
        }