:root {
    --primary-teal: #00AA9B;
    --dark-navy: #071B33;
    --soft-teal: #effffb;
    --line: #e7eef4;
}

.page-header-section {
    padding: 132px 0 46px;
    background: linear-gradient(180deg, #f2fffb 0%, #ffffff 100%);
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.page-header-section .section-label {
    color: var(--primary-teal);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-header-section h1 {
    color: var(--dark-navy);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header-section p {
    color: #5f6f82;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.laporan-section {
    padding: 46px 0 64px;
    background: #fff;
}

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(7, 27, 51, .06);
}

.stats-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-label {
    color: #6b7b8f;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stats-number {
    color: var(--primary-teal);
    font-size: clamp(2.3rem, 5vw, 3.35rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

.stats-progress {
    height: 10px;
    border-radius: 999px;
    background: #edf3f7;
    overflow: hidden;
    margin-bottom: 22px;
}

.stats-progress span {
    display: block;
    height: 100%;
    min-width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-teal), #2f80ed);
}

.stats-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stats-split div {
    background: var(--soft-teal);
    border-radius: 14px;
    padding: 14px;
}

.stats-split strong {
    display: block;
    color: var(--dark-navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.stats-split small {
    color: #617286;
    font-weight: 700;
}

.card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.card-heading h2 {
    color: var(--dark-navy);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.card-heading p {
    color: #637386;
    margin: 0;
    line-height: 1.6;
}

.chart-wrap {
    height: 292px;
}

.laporan-table {
    color: var(--dark-navy);
}

.laporan-table thead th {
    background: #071B33;
    color: #fff;
    border: 0;
    font-size: .78rem;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 16px;
}

.laporan-table tbody td {
    border-color: var(--line);
    padding: 15px 16px;
}

.laporan-table tbody tr:hover td {
    background: #f7fffd;
}

@media (max-width: 991.98px) {
    .page-header-section {
        padding: 100px 18px 38px;
    }

    .laporan-section {
        padding: 34px 0 44px;
    }

    .content-card {
        padding: 22px;
    }
}

@media (max-width: 575.98px) {
    .page-header-section {
        padding-top: 84px;
    }

    .content-card {
        border-radius: 16px;
        padding: 18px;
    }

    .stats-split {
        grid-template-columns: 1fr;
    }

    .chart-wrap {
        height: 260px;
    }

    .laporan-table {
        min-width: 620px;
    }
}
