
        :root {
            --primary-color: #30A0FF;
            --secondary-color: #000000;
            --accent-color: #2563eb;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --background-light: #f8fafc;
            --border-color: #e5e7eb;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(48, 160, 255, 0.3);
            text-decoration: none;
            color: white;
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
        }

        .hero-gradient {
            background: linear-gradient(135deg, rgba(48, 160, 255, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(48, 160, 255, 0.15);
        }

        .section-title {
            color: var(--secondary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(48, 160, 255, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        .inquiry-floating {
            position: fixed;
            right: 20px;
            bottom: 100px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .inquiry-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .inquiry-btn.email {
            background: linear-gradient(135deg, #ea4335, #d33b2c);
        }

        .inquiry-btn.whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .inquiry-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: white;
            text-decoration: none;
        }

        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 15px rgba(48, 160, 255, 0.1);
        }

        .faq-question {
            background: var(--background-light);
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px 20px 20px;
            color: var(--text-secondary);
        }

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--primary-color);
        }

        .product-showcase {
            background: linear-gradient(135deg, rgba(48, 160, 255, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
            border-radius: 16px;
            padding: 32px;
            margin: 32px 0;
        }

        @media (max-width: 768px) {
            .inquiry-floating {
                right: 15px;
                bottom: 80px;
            }
            
            .inquiry-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .strength-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .strength-icon {
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
        }

        .comparison-table {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .comparison-table th {
            background: var(--primary-color);
            color: white;
            padding: 16px;
            text-align: left;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 16px;
            border-bottom: 1px solid var(--border-color);
        }

        .comparison-table tr:hover {
            background: rgba(48, 160, 255, 0.05);
        }
    