.statistik-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    position: relative;
    z-index: 1;
}
.page-header {
    margin-bottom: 24px;
}
.page-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}
.page-header p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 620px;
}
.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 8px 0 16px;
}
.map-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}
.map-thumb {
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 12px;
    padding: 12px;
}
.map-thumb-year {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4338ca;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}
.map-thumb-canvas {
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
    background: #e8ecfb;
}
.two-col-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.card {
    background: #fff;
    border: 1px solid #eceef3;
    border-radius: 16px;
    padding: 24px;
}
.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.card-subtitle {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 18px;
}
.chart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}
.chart-box {
    height: 360px;
    position: relative;
}
.legend-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.legend-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f7fb;
    border: 1px solid #eceef3;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}
.legend-chip .chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--chip-color, #999);
}
.legend-chip.chip-off {
    opacity: 0.4;
}
.tabel-tahun {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.tabel-tahun thead th {
    text-align: left;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 10px 12px;
    border-bottom: 1px solid #eceef3;
}
.tabel-tahun tbody td {
    padding: 12px;
    border-bottom: 1px solid #f3f4f7;
    color: #374151;
}
.tabel-tahun tbody tr:last-child td {
    border-bottom: none;
}
.tabel-tahun .tahun-cell {
    font-weight: 700;
    color: #111827;
}
@media (max-width: 900px) {
    .map-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .map-grid { grid-template-columns: 1fr; }
    .statistik-page { padding-top: 100px; }
}