    .ppid-wrap * { font-family: 'Plus Jakarta Sans', sans-serif; }

    /* ── Tokens ── */
    .ppid-wrap {
        --navy:     #002b5b;
        --navy-mid: #003f82;
        --blue:     #2563eb;
        --blue-lt:  #dbeafe;
        --gold:     #f59e0b;
        --surface:  #f8faff;
        --border:   #e2e8f0;
        --text:     #1e293b;
        --muted:    #64748b;
    }

    /* ── Hero ── */
    .ppid-hero {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1d4ed8 100%);
        position: relative;
        overflow: hidden;
        padding: 80px 0 60px;
    }
    .ppid-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 50% at 80% 50%, rgba(37,99,235,.25) 0%, transparent 70%),
            radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,.05) 0%, transparent 60%);
        pointer-events: none;
    }
    .ppid-hero-dots {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
        background-size: 28px 28px;
        pointer-events: none;
    }
    .ppid-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.2);
        color: #bfdbfe;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 100px;
        margin-bottom: 20px;
    }
    .ppid-eyebrow-dot {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--gold);
        animation: ppid-blink 2s ease-in-out infinite;
    }
    @keyframes ppid-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

    .ppid-hero h1 {
        font-size: clamp(1.6rem, 4vw, 2.6rem);
        font-weight: 800;
        line-height: 1.2;
        color: #fff;
    }
    .ppid-hero h1 span { color: #93c5fd; }
    .ppid-hero-sub {
        color: rgba(255,255,255,.65);
        font-size: .95rem;
        line-height: 1.7;
        max-width: 480px;
    }
    .ppid-social-btn {
        width: 40px; height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.2);
        display: flex; align-items: center; justify-content: center;
        transition: background .2s, transform .2s;
        flex-shrink: 0;
    }
    .ppid-social-btn:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

    /* ── Section label ── */
    .ppid-section-label {
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        margin-bottom: 40px;
    }
    .ppid-section-label .line {
        height: 2px; width: 40px;
        background: linear-gradient(90deg, var(--blue), var(--navy));
        border-radius: 2px;
        flex-shrink: 0;
    }
    .ppid-section-label h2 {
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--navy);
        margin: 0;
    }

    /* ── Layanan cards ── */
    .ppid-section-blue {
        background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
        padding: 64px 0;
    }
    .ppid-service-card {
        background: var(--navy);
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        color: #fff;
        text-decoration: none;
        display: block;
        transition: transform .25s, box-shadow .25s;
        position: relative;
        overflow: hidden;
    }
    .ppid-service-card::before {
        content: '';
        position: absolute;
        top: -40px; right: -40px;
        width: 120px; height: 120px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
    }
    .ppid-service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,43,91,.25); color: #fff; }
    .ppid-service-icon {
        width: 56px; height: 56px;
        border-radius: 14px;
        background: rgba(255,255,255,.12);
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 16px;
        font-size: 1.4rem;
    }
    .ppid-service-card h5 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
    .ppid-service-card p  { font-size: .8rem; opacity: .7; margin: 0; }

    /* ── Statistik ── */
    .ppid-stats-section { background: #fff; padding: 64px 0; }
    .ppid-stat-card {
        border-radius: 16px;
        padding: 28px 20px;
        text-align: center;
        border: 1px solid var(--border);
        background: var(--surface);
        transition: transform .25s, box-shadow .25s;
    }
    .ppid-stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,43,91,.08); }
    .ppid-stat-icon {
        width: 52px; height: 52px;
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 14px;
        font-size: 1.2rem;
    }
    .ppid-stat-value {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 6px;
    }
    .ppid-stat-label { font-size: .8rem; font-weight: 600; color: var(--muted); }

    /* ── Layanan Publik ── */
    .ppid-publik-section { background: var(--surface); padding: 64px 0; }
    .ppid-publik-card {
        background: #fff;
        border-radius: 16px;
        border: 1px solid var(--border);
        padding: 28px 20px;
        text-align: center;
        display: flex; flex-direction: column; align-items: center;
        height: 100%;
        transition: transform .25s, box-shadow .25s;
    }
    .ppid-publik-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,43,91,.08); }
    .ppid-publik-card img { max-height: 64px; object-fit: contain; margin-bottom: 14px; }
    .ppid-publik-card p { font-size: .82rem; color: var(--muted); flex: 1; margin-bottom: 16px; line-height: 1.6; }
    .ppid-visit-btn {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: .78rem; font-weight: 700;
        padding: 8px 20px;
        border-radius: 100px;
        text-decoration: none;
        color: #fff;
        transition: opacity .2s, transform .2s;
    }
    .ppid-visit-btn:hover { opacity: .88; transform: scale(1.04); color: #fff; }

    /* ── Visitor ── */
    .ppid-visitor-section {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
        padding: 64px 0;
    }
    .ppid-visitor-card {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 16px;
        padding: 28px 20px;
        text-align: center;
        transition: background .25s, transform .25s;
    }
    .ppid-visitor-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
    .ppid-visitor-icon {
        width: 52px; height: 52px;
        border-radius: 14px;
        background: rgba(255,255,255,.12);
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 14px;
        font-size: 1.2rem;
        color: #93c5fd;
    }
    .ppid-visitor-value { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
    .ppid-visitor-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); }

    /* ── Responsive tweaks ── */
    @media (max-width: 767px) {
        .ppid-hero { padding: 56px 0 40px; }
        .ppid-hero-img { margin-top: 32px; }
        .ppid-stat-value, .ppid-visitor-value { font-size: 1.8rem; }
    }
