   
    body {

      font-family: 'Open Sans', 'Lato', sans-serif;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', 'Poppins', sans-serif;
    }.service-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }
        .gradient-text {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .mobile-gradient {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
        }
        .floating-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
        }
        .process-step {
            position: relative;
        }
        .process-step::before {
            content: '';
            position: absolute;
            left: -25px;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, #6366f1, #4f46e5);
        }
        .package-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .package-card:hover {
            transform: translateY(-10px);
        }
        .package-card.popular {
            border: 2px solid #6366f1;
            transform: scale(1.05);
        }
        .tech-badge {
            background: linear-gradient(135deg, #1e293b, #334155);
            border: 1px solid #475569;
        }
        .app-type-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }
        .feature-category {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-left: 4px solid #6366f1;
        }
        .approach-card {
            transition: all 0.3s ease;
        }
        .approach-card:hover {
            transform: translateY(-5px);
            border-color: #6366f1;
        }
        .phone-mockup {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-radius: 40px;
            padding: 20px 10px;
            border: 2px solid #334155;
            position: relative;
        }
        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 5px;
            background: #334155;
            border-radius: 10px;
        }