.profil-layout { display: grid; grid-template-columns: 1fr 250px; gap: 32px; }
.profil-main {}
.profil-sidebar {}
.content-card { background: white; border-radius: 12px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.content-card h2 { color: var(--hijau); font-size: 1.4rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.prose { font-size: 1rem; line-height: 2; color: #444; white-space: pre-line; }

.visi-box { text-align: center; padding: 20px; }
.visi-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--hijau), var(--hijau-muda)); border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin-bottom: 16px; }
.visi-box h2 { justify-content: center; }
.visi-box p { font-size: 1.1rem; font-style: italic; color: #555; line-height: 1.8; max-width: 600px; margin: 0 auto; }

.misi-list { display: flex; flex-direction: column; gap: 12px; }
.misi-item { display: flex; gap: 16px; align-items: flex-start; padding: 14px; background: #f9fffe; border-radius: 10px; border-left: 3px solid var(--hijau); }
.misi-no { min-width: 32px; height: 32px; background: var(--hijau); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }

.perangkat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.perangkat-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); text-align: center; padding-bottom: 20px; transition: transform 0.2s; }
.perangkat-card:hover { transform: translateY(-4px); }
.perangkat-card img { width: 100%; height: 200px; object-fit: cover; object-position: top; }
.perangkat-avatar { width: 100%; height: 200px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--hijau); }
.perangkat-info { padding: 16px 16px 0; }
.perangkat-info h3 { font-size: 1rem; margin-bottom: 6px; }
.perangkat-info .jabatan { display: inline-block; background: #e8f5e9; color: var(--hijau); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.perangkat-info .kontak { margin-top: 8px; font-size: 0.8rem; color: #888; }

.sidebar-widget { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.sidebar-widget h4 { font-size: 0.95rem; color: var(--hijau); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #e8f5e9; display: flex; align-items: center; gap: 8px; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--teks); text-decoration: none; font-size: 0.875rem; border-radius: 8px; transition: all 0.2s; margin-bottom: 4px; }
.sidebar-widget ul li a:hover, .sidebar-widget ul li a.active { background: #e8f5e9; color: var(--hijau); font-weight: 600; }

@media (max-width: 768px) {
    .profil-layout { grid-template-columns: 1fr; }
    .profil-sidebar { order: -1; }
    .perangkat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #005580 0%, #0077b6 50%, #00a8e8 100%);
    color: white;
    padding: 70px 20px 50px;
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(245,166,35,0.12) 0%, transparent 45%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scale(1.3);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--kuning);
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}
.page-hero h1 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.page-hero p {
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.6;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.page-hero-breadcrumb a:hover { color: var(--kuning); }

@media (max-width: 768px) {
    .page-hero { padding: 56px 20px 40px; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.875rem; }
}