
        :root {
            --primary-color: #30A0FF;
            --secondary-color: #000000;
            --accent-color: #f8fafc;
            --gradient-primary: linear-gradient(135deg, #30A0FF 0%, #1e40af 100%);
        }
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #1f2937;
        }
        
        .hero-gradient {
            background: var(--gradient-primary);
        }
        
        .text-primary {
            color: var(--primary-color);
        }
        
        .bg-primary {
            background-color: var(--primary-color);
        }
        
        .border-primary {
            border-color: var(--primary-color);
        }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(48, 160, 255, 0.3);
            color: white;
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .stats-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-color);
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
        }
        
        .product-showcase {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .product-showcase:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2);
        }
        
        .faq-item {
            border-bottom: 1px solid #e5e7eb;
            padding: 24px 0;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin: 16px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.3;
        }
        
        .inquiry-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 16px;
            padding: 48px;
            margin: 48px 0;
        }
        
        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            background: #20ba5a;
            transform: translateY(-2px);
            color: white;
        }
        
        .email-btn {
            background: #EA4335;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .email-btn:hover {
            background: #d33b2c;
            transform: translateY(-2px);
            color: white;
        }
        
        @media (max-width: 768px) {
            .hero-gradient {
                padding: 48px 16px;
            }
            
            .feature-card, .testimonial-card {
                padding: 24px;
            }
            
            .inquiry-section {
                padding: 32px 24px;
            }
        }
        
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .image-container img {
            transition: transform 0.3s ease;
        }
        
        .image-container:hover img {
            transform: scale(1.05);
        }
        
        .comparison-table {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        .comparison-table th {
            background: var(--gradient-primary);
            color: white;
            padding: 16px;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 16px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #30A0FF10 0%, #1e40af10 100%);
            border-left: 4px solid var(--primary-color);
            border-radius: 8px;
            padding: 24px;
            margin: 24px 0;
        }
    