/*
  service-page-b.css — foundation bersama halaman LAYANAN (varian token --bg-primary).
  Dipakai: data-system, digital-store, creative-studio.
  CSS spesifik tiap halaman (.page-header::before dst.) tetap inline di halamannya.
*/

        :root {
            --bg-primary: #070B14;
            --bg-secondary: #0a1120;
            --accent-cyan: #00D2FF;
            --accent-blue: #0077FF;
            --text-primary: #95A6BD;
            --text-light: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(180deg, #050913 0%, var(--bg-primary) 35%, var(--bg-secondary) 100%);
            color: var(--text-primary);
            font-family: 'Urbanist', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: 
                linear-gradient(90deg, rgba(0,210,255,0.03) 1px, transparent 1px),
                linear-gradient(rgba(0,210,255,0.03) 1px, transparent 1px);
            background-size: 36px 36px;
            background-position: 0 0;
            mask: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
            z-index: 1;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at center, rgba(0,0,0,0) 35%, rgba(0,0,0,0.42) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .aurora-layer {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .aurora-layer span {
            position: absolute;
            border-radius: 50%;
            filter: blur(85px);
            opacity: 0.6;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle at 15% 20%, rgba(0,210,255,0.4) 0%, rgba(0,210,255,0.1) 50%, transparent 100%);
            top: -50px;
            right: -100px;
            animation: floatOrb 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle at 85% 18%, rgba(0,119,255,0.3) 0%, rgba(0,119,255,0.05) 50%, transparent 100%);
            bottom: -150px;
            left: -200px;
            animation: floatOrb 22s ease-in-out infinite;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
            33% { transform: translate3d(-26px, 34px, 0) scale(1.05); }
            66% { transform: translate3d(26px, -34px, 0) scale(0.98); }
        }

        @keyframes gridFloat {
            0%, 100% { transform: translate3d(0, 0, 0); }
            50% { transform: translate3d(12px, 8px, 0); }
        }

        @keyframes rotateBorder {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes revealY {
            from {
                opacity: 0;
                transform: translateY(28px) scale(0.985);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        [data-reveal] {
            opacity: 0;
            transform: translateY(28px) scale(0.985);
            transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
        }

        [data-reveal].is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .noise-layer {
            position: fixed;
            inset: 0;
            background: url('data:image/svg+xml,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" seed="2" /></filter><rect width="400" height="400" filter="url(%23noise)" opacity="0.5"/></svg>');
            mix-blend-mode: soft-light;
            opacity: 0.45;
            pointer-events: none;
            z-index: 2;
        }

        .glass-nav {
            background: rgba(7, 11, 20, 0.56);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
        }

        .glass-nav.scrolled {
            background: rgba(7, 11, 20, 0.88);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .brand-wrap {
            display: inline-flex;
            align-items: center;
            padding: 0.55rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 210, 255, 0.2);
            background: rgba(0, 210, 255, 0.06);
            transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
        }

        .brand-wrap:hover {
            transform: translateY(-2px);
            background: rgba(0, 210, 255, 0.12);
            border-color: rgba(0, 210, 255, 0.5);
        }

        .page-header {
            position: relative;
            padding: 3rem 2rem;
            text-align: center;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 2rem;
        }

