/* Product Page Styling */
      .product-card {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
      }
      .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, #3b82f6, #6366f1);
        transition: height 0.3s ease;
      }
      .product-card:hover::before {
        height: 100%;
      }
      .gradient-text {
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .feature-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.75rem;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 600;
        color: #3b82f6;
        margin: 0.25rem;
      }
      .hero-gradient {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #6366f1 100%);
      }
      .stat-card {
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
      }
      .product-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
      }
      .animate-fade-in {
        animation: fadeIn 0.8s ease-in;
      }
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }
      .section-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
        margin: 3rem 0;
      }
