/* Hero Section */
        .service-hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8rem 0 4rem; }
        .service-hero h1 { font-family: 'Satoshi', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem; }
        .service-hero p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.75); max-width: 700px; margin: 0 auto 2rem; }
        .gradient-text { background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .meta-badge { display: inline-flex; align-items: center; gap: 12px; padding: 10px 20px; background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; margin-bottom: 2rem; }
        .meta-badge img { height: 28px; filter: brightness(0) invert(1); }
        .meta-badge span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); }
        .btn-large { display: inline-block; padding: 1rem 2.5rem; background: rgba(255, 255, 255, 0.9); color: #000; font-size: 1.1rem; font-weight: 600; border-radius: 8px; text-decoration: none; transition: all 0.2s ease; }
        .btn-large:hover { background: #fff; transform: translateY(-2px); }

        /* Hero Animation */
        .service-hero .meta-badge, .service-hero h1, .service-hero > .container > p, .service-hero .btn-large { opacity: 0; transform: translateY(30px); animation: heroFadeIn 0.8s ease-out forwards; }
        .service-hero .meta-badge { animation-delay: 0.1s; }
        .service-hero h1 { animation-delay: 0.2s; }
        .service-hero > .container > p { animation-delay: 0.3s; }
        .service-hero .btn-large { animation-delay: 0.4s; }
        @keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }

        /* Section Styles */
        .content-section { padding: 5rem 0; }
        .section-title { font-family: 'Satoshi', sans-serif; font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 1rem; }
        .section-subtitle { text-align: center; color: rgba(255, 255, 255, 0.7); margin-bottom: 3rem; font-size: 1.1rem; }

        /* Industry Cards Grid */
        .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
        .feature-card { background: rgba(10, 10, 10, 0.95); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 2rem; transition: all 0.2s ease; text-decoration: none; color: inherit; display: block; }
        .feature-card:hover { border-color: rgba(255, 255, 255, 0.2); transform: translateY(-4px); }
        .feature-card.dashed { border-style: dashed; border-color: rgba(255, 255, 255, 0.2); }
        .feature-icon { width: 48px; height: 48px; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.9); }
        .feature-icon svg { width: 32px; height: 32px; }
        .feature-card h3 { font-family: 'Satoshi', sans-serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
        .feature-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.6; }
        .card-cta { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.8); font-weight: 500; font-size: 0.9rem; margin-top: 1rem; }
        .card-cta svg { transition: transform 0.2s ease; width: 16px; height: 16px; }
        .feature-card:hover .card-cta { color: #fff; }
        .feature-card:hover .card-cta svg { transform: translateX(4px); }

        /* Use Cases Section */
        .use-cases { padding: 5rem 0; background: rgba(255, 255, 255, 0.02); }
        .use-case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
        .use-case-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: rgba(10, 10, 10, 0.95); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.08); }
        .use-case-item svg { flex-shrink: 0; color: rgba(255, 255, 255, 0.8); }
        .use-case-item h4 { font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
        .use-case-item p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.5; }

        /* CTA Section */
        .cta-section { padding: 6rem 0; text-align: center; }
        .cta-section h2 { font-family: 'Satoshi', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-section p { color: rgba(255, 255, 255, 0.65); max-width: 500px; margin: 0 auto 2rem; }

        @media (max-width: 768px) {
            .desktop-only { display: none !important; }
            .service-hero { padding: 7rem 0 3rem; min-height: 50vh; }
            .feature-grid { grid-template-columns: 1fr; }
            .use-case-grid { grid-template-columns: 1fr; }
        }
