/* ══════════════════════════
   SIDE NAV (sticky)
══════════════════════════ */
.spmi-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
    padding: 72px 0;
}
.side-nav {
    position: sticky;
    top: 90px;
}
.side-nav-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 12px;
    padding-left: 4px;
}
.side-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.snav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--neutral-600);
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid transparent;
    cursor: pointer;
}
.snav-item:hover {
    background: var(--neutral-100);
    color: var(--secondary);
}
.snav-item.active {
    background: rgba(1, 61, 33, 0.08);
    color: var(--secondary);
    border-color: rgba(1, 61, 33, 0.15);
    font-weight: 700;
}
.snav-item.active .snav-dot {
    background: var(--secondary);
}
.snav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neutral-300);
    flex-shrink: 0;
    transition: background 0.2s;
}
.snav-divider {
    height: 1px;
    background: var(--neutral-200);
    margin: 8px 0;
}

/* ══════════════════════════
   CONTENT AREA
══════════════════════════ */
.content-area {
    min-width: 0;
}

/* Section card wrapper */
.spmi-section {
    margin-bottom: 64px;
    scroll-margin-top: 90px;
}

.spmi-section p {
    font-size: 20px;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 28px;
}

.spmi-section:last-child {
    margin-bottom: 0;
}

/* ── TENTANG SPMI ── */
.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}
.tentang-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    border: 1.5px solid var(--neutral-200);
    transition: all 0.3s;
}
.tentang-card:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(1, 61, 33, 0.08);
}
.tc-icon {
    font-size: 32px;
    margin-bottom: 14px;
}
.tc-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 10px;
}
.tc-desc {
    font-size: 13.5px;
    color: var(--neutral-600);
    line-height: 1.75;
}

/* Siklus PPEPP */
.ppepp-wrap {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid var(--neutral-200);
    padding: 36px;
    margin-top: 32px;
}
.ppepp-wrap .title-siklus {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 4px;
}
.ppepp-wrap h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 4px;
}
.ppepp-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-top: 28px;
}
.ppepp-row::before {
    content: "";
    position: absolute;
    top: 44px;
    left: calc(10% + 44px);
    right: calc(10% + 44px);
    height: 3px;
    background: linear-gradient(
        to right,
        var(--secondary),
        var(--primary),
        var(--secondary)
    );
    border-radius: 2px;
    z-index: 0;
}
.ppepp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}
.ppepp-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 14px;
    transition: transform 0.3s;
}
.ppepp-item:hover .ppepp-circle {
    transform: scale(1.08);
}
.ppepp-letter {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ppepp-sub {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.ppepp-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 4px;
}
.ppepp-desc {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.55;
}

/* ── MONEV ── */
.monev-header {
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-light)
    );
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.monev-header::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.monev-header::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(235, 118, 19, 0.08);
}
.monev-header p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 680px;
}
.mh-inner {
    position: relative;
    z-index: 1;
}
.mh-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}
.mh-title {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}
.mh-title em {
    color: var(--primary-light);
    font-style: normal;
}
.mh-inner p {
    font-size: 17px;
}

/* Ruang lingkup monev */
.ruang-lingkup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.rl-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1.5px solid var(--neutral-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.rl-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
}
.rl-card:nth-child(1)::before {
    background: linear-gradient(
        to right,
        var(--secondary),
        var(--secondary-light)
    );
}
.rl-card:nth-child(2)::before {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}
.rl-card:nth-child(3)::before {
    background: linear-gradient(to right, #0a4a8a, #1a6ab0);
}
.rl-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.rl-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.rl-card:nth-child(1) .rl-icon-wrap {
    background: rgba(1, 61, 33, 0.08);
}
.rl-card:nth-child(2) .rl-icon-wrap {
    background: rgba(235, 118, 19, 0.1);
}
.rl-card:nth-child(3) .rl-icon-wrap {
    background: rgba(10, 74, 138, 0.1);
}
.rl-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 8px;
}
.rl-desc p {
    font-size: 13px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* Output Monev */
.output-box {
    background: var(--neutral-50);
    border-radius: 16px;
    border: 1.5px solid var(--neutral-200);
    padding: 24px 28px;
}
.ob-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ob-title::before {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
/* .output-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.output-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid var(--neutral-200);
    transition: border 0.2s;
}
.output-item:hover {
    border-color: var(--primary);
} */
/* =========================
   Rich Editor Content
========================= */

.rich-content {
    color: var(--neutral-700);
    font-size: 15px;
    line-height: 1.9;
}

/* Heading */
.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.6rem;
    margin-bottom: 0.9rem;
}

.rich-content h1 {
    font-size: 2rem;
}

.rich-content h2 {
    font-size: 1.75rem;
}

.rich-content h3 {
    font-size: 1.5rem;
}

.rich-content h4 {
    font-size: 1.25rem;
}

.rich-content h5 {
    font-size: 1.1rem;
}

.rich-content h6 {
    font-size: 1rem;
}

/* Paragraph */
.rich-content p {
    margin-bottom: 1rem;
}

/* Strong */
.rich-content strong {
    color: var(--secondary);
    font-weight: 700;
}

/* Link */
.rich-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.rich-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Lists */
.rich-content ul,
.rich-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.rich-content li {
    margin-bottom: 0.5rem;
}

.rich-content ul li::marker {
    color: var(--primary);
}

.rich-content ol li::marker {
    color: var(--primary);
    font-weight: 700;
}

/* Blockquote */
.rich-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--primary);
    background: rgba(235, 118, 19, 0.08);
    color: var(--neutral-600);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

/* Code */
.rich-content code {
    background: var(--neutral-100);
    color: var(--danger);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.9em;
}

.rich-content pre {
    background: var(--neutral-900);
    color: white;
    padding: 16px;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 1rem 0;
}

.rich-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Table */
.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--neutral-200);
}

.rich-content thead {
    background: var(--secondary);
    color: white;
}

.rich-content th,
.rich-content td {
    padding: 12px 16px;
    border: 1px solid var(--neutral-200);
    text-align: left;
}

.rich-content tbody tr:nth-child(even) {
    background: var(--neutral-50);
}

/* Images */
.rich-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Horizontal Line */
.rich-content hr {
    border: none;
    height: 1px;
    background: var(--neutral-200);
    margin: 2rem 0;
}

/* Responsive table */
@media (max-width: 768px) {
    .rich-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
.oi-icon {
    width: 32px;
    height: 32px;
    background: rgba(235, 118, 19, 0.1);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 14px;
    flex-shrink: 0;
}
.oi-text {
    font-size: 13.5px;
    color: var(--neutral-700);
    line-height: 1.6;
}
.oi-text strong {
    color: var(--secondary);
}

/* ── AMI ── */
.ami-header {
    background: linear-gradient(135deg, #0a2e4a, #1a4a6a);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.ami-header::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(235, 118, 19, 0.08);
}
.ami-header p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 680px;
}
.ami-tujuan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.at-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.at-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.at-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(235, 118, 19, 0.3);
}

.at-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(235, 118, 19, 0.12);
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.at-content {
    color: var(--neutral-700);
    line-height: 1.8;
    font-size: 14px;
}

/* Mekanisme AMI — timeline horizontal */
.mekanism-wrap {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid var(--neutral-200);
    padding: 32px;
    margin-bottom: 28px;
}
.mekanism-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mekanism-title::before {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.mekanism-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
.mekanism-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(16% + 28px);
    right: calc(16% + 28px);
    height: 2px;
    /* background: linear-gradient(to right, var(--secondary), var(--primary)); */
    border-radius: 2px;
}
.ms-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.ms-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-light)
    );
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(1, 61, 33, 0.25);
    margin-bottom: 14px;
    transition: transform 0.3s;
}
.ms-step:hover .ms-num {
    transform: scale(1.1);
}
.step-1 .ms-num {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.step-2 .ms-num {
    background: linear-gradient(135deg, #0a2e4a, #1a4a6a);
}

.step-3 .ms-num {
    background: linear-gradient(135deg, #198754, #20c997);
}

.step-4 .ms-num {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}
.ms-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 6px;
}
.ms-desc {
    font-size: 12.5px;
    color: var(--neutral-500);
    line-height: 1.65;
}
.ms-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-top: 8px;
}
.step-1 .ms-tag {
    background: rgba(1, 61, 33, 0.1);
    color: var(--secondary);
}
.step-2 .ms-tag {
    background: rgba(235, 118, 19, 0.1);
    color: var(--primary);
}
.step-3 .ms-tag {
    background: rgba(10, 46, 74, 0.1);
    color: #0a2e4a;
}
.step-4 .ms-tag {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}
/* .ms-step:nth-child(1) .ms-tag {
    background: rgba(1, 61, 33, 0.1);
    color: var(--secondary);
}
.ms-step:nth-child(2) .ms-tag {
    background: rgba(235, 118, 19, 0.1);
    color: var(--primary);
}
.ms-step:nth-child(3) .ms-tag {
    background: rgba(10, 46, 74, 0.1);
    color: #0a2e4a;
} */

/* ── DOKUMEN SPMI ── */
.dok-section-intro {
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-light)
    );
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.dok-section-intro::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

/* Kelompok dokumen */
.dok-group {
    margin-bottom: 32px;
}
.dok-group-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--neutral-200);
    display: flex;
    align-items: center;
    gap: 8px;
}
.dok-group-label span {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-light)
    );
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
}
.dok-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dok-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid var(--neutral-200);
    text-decoration: none;
    transition: all 0.25s;
    group: hover;
}
.dok-item:hover {
    border-color: var(--secondary);
    background: rgba(1, 61, 33, 0.02);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(1, 61, 33, 0.08);
}
.dok-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(1, 61, 33, 0.08);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.dok-item:hover .dok-item-icon {
    background: rgba(1, 61, 33, 0.15);
}
.dok-item-info {
    flex: 1;
    min-width: 0;
}
.dok-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 2px;
}
.dok-item:hover .dok-item-name {
    color: var(--secondary);
}
.dok-item-meta {
    font-size: 11.5px;
    color: var(--neutral-400);
}
.dok-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(235, 118, 19, 0.1);
    color: var(--primary);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.dok-item-badge::before {
    content: "↗";
}
.dok-item.sub {
    margin-left: 24px;
    background: var(--neutral-50);
}
.dok-item.sub .dok-item-icon {
    background: rgba(235, 118, 19, 0.08);
}
.dok-item.sub:hover .dok-item-icon {
    background: rgba(235, 118, 19, 0.18);
}

/* ══════════════════════════
   CTA STRIP
══════════════════════════ */
.cta-strip {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}
.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-text-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.cta-text-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
    line-height: 1.6;
}
.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-white {
    background: #fff;
    color: var(--primary);
}
.btn-white:hover {
    background: var(--neutral-50);
    transform: translateY(-2px);
}
.btn-dark-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
}
.btn-dark-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* FOOTER */
footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 16px;
}
.footer-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.footer-brand-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}
.footer-about {
    font-size: 13px;
    line-height: 1.75;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}
.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: "›";
    color: var(--primary);
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--primary-light);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(235, 118, 19, 0.4);
    transition: all 0.2s;
    font-size: 16px;
    border: none;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}
.back-top.show {
    opacity: 1;
    pointer-events: all;
}
.back-top:hover {
    transform: translateY(-3px);
    background: var(--secondary);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .spmi-layout {
        grid-template-columns: 1fr;
    }
    .side-nav {
        display: none;
    }
    .ph-content {
        grid-template-columns: 1fr;
    }
    .ph-right {
        display: none;
    }
    .ruang-lingkup-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ami-tujuan-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .tentang-grid {
        grid-template-columns: 1fr;
    }
    .ppepp-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .ppepp-row::before {
        display: none;
    }
    .ruang-lingkup-grid {
        grid-template-columns: 1fr;
    }
    .ami-tujuan-grid {
        grid-template-columns: 1fr;
    }
    .mekanism-steps {
        grid-template-columns: 1fr;
    }
    .mekanism-steps::before {
        display: none;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .dok-item.sub {
        margin-left: 0;
    }
}
