        body{
            background-color: #0a0a0a;
        }
        .hero-section.page-hero {
            position: relative;
            padding-top: 0;
            padding-bottom: 0;
            overflow: hidden;
            background: #0a0a0a;
        }

        /* ---- Latar belakang ---- */
        .page-hero-bg {
            position: relative;
            height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        /* Gambar cover dengan parallax ringan via GSAP */
        .page-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            will-change: transform;
        }

        /* Overlay gelap bertingkat */
        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%),
                linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
        }

        /* Garis oranye kiri — signature visual brand */
        .page-hero-accent {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            background: linear-gradient(to bottom,
                    transparent 0%,
                    #ff6a00 30%,
                    #ff6a00 70%,
                    transparent 100%);
            z-index: 2;
        }

        /* Noise texture overlay untuk kesan premium */
        .page-hero-noise {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            background-size: 200px;
            opacity: 0.35;
            pointer-events: none;
            mix-blend-mode: overlay;
        }

        /* ---- Konten teks ---- */
        .page-hero-content {
            position: relative;
            z-index: 3;
            padding: 48px 0 52px;
        }

        /* Label breadcrumb */
        .page-hero-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 16px;
        }

        .page-hero-breadcrumb a {
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            transition: color 0.3s;
        }

        .page-hero-breadcrumb a:hover {
            color: #ff6a00;
        }

        .page-hero-breadcrumb .sep {
            color: #ff6a00;
        }

        .page-hero-breadcrumb .current {
            color: #ff6a00;
        }

        /* Judul utama */
        .page-hero-title {
            font-size: clamp(2.8rem, 6vw, 5.5rem);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -0.04em;
            color: #ffffff;
            margin: 0;
        }

        .page-hero-title .word-outline {
            -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
            color: transparent;
        }

        .page-hero-title .word-accent {
            color: #ff6a00;
        }

        /* Garis kecil di bawah judul */
        .page-hero-line {
            width: 0;
            height: 2px;
            background: #ff6a00;
            margin-top: 20px;
            transition: width 1s ease 0.8s;
        }

        .page-hero-line.show {
            width: 80px;
        }

        /* Tag pojok kanan bawah */
        .page-hero-tag {
            position: absolute;
            right: 0;
            bottom: 52px;
            z-index: 3;
            padding: 10px 20px;
            background: rgba(255, 106, 0, 0.9);
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #fff;
            font-weight: 600;
        }