:root {
    --pr-primary: #29b6f6;
    --pr-deep: #04205F;
    --pr-muted: #475467;
    --pr-bg: #f6f7fb;
    --pr-card: #ffffff;
    --pr-border: rgba(16, 24, 40, 0.10);
    --pr-ok: #15b79e;
    --pr-danger: #d9534f;
    --pr-warn: #ffb300;
}

.pc-hero {
    position: relative;
    padding: 120px 0 96px;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(900px 520px at 70% 20%, rgba(41, 182, 246, 0.24), rgba(0, 0, 0, 0)),
        radial-gradient(900px 520px at 18% 32%, rgba(179, 136, 255, 0.18), rgba(0, 0, 0, 0)),
        linear-gradient(135deg, rgba(3, 18, 58, 1) 0%, rgba(4, 32, 95, 1) 55%, rgba(11, 59, 107, 1) 100%);
}
.pc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.34;
    pointer-events: none;
    mask-image: radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 72%);
}
.pc-hero .container { position: relative; z-index: 2; }
.pc-hero h1 {
    font-size: 3rem;
    font-weight: 950;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #fff;
}
.pc-hero .subtitle {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 32px 0;
    max-width: 820px;
}
.pc-balance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.pc-pan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    border-radius: 18px;
    min-width: 140px;
}
.pc-pan.left {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.pc-pan.right {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.pc-pan .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 800;
}
.pc-pan .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pc-pan .icons i.material-symbols-outlined { font-size: 36px; color: rgba(255,255,255,0.9); }
.pc-pan.right .icons i.material-symbols-outlined { color: rgba(255,255,255,0.75); }
.pc-pan .brand {
    font-weight: 950;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
}
.pc-scale-bar {
    width: 4px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
    border-radius: 4px;
}
.pc-scale-beam {
    width: 120px;
    height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 6px;
    margin: -2px 0;
}

.pr-wrap { background: var(--pr-bg); padding: 64px 0; }
.pr-wrap.alt { background: #fff; }
.pr-title h2 { color: var(--pr-deep); font-weight: 950; margin: 0 0 10px 0; }
.pr-title p { margin: 0; color: var(--pr-muted); font-size: 1.05rem; line-height: 1.8; }
.pc-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--pr-deep);
    margin: 12px 0 20px 0;
    padding-left: 1rem;
    border-left: 4px solid var(--pr-primary);
    line-height: 1.7;
}

.pc-table-wrap {
    margin-top: 20px;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--pr-border);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}
.pc-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--pr-card);
    font-size: 0.98rem;
    table-layout: fixed;
}
.pc-table th, .pc-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--pr-border);
    vertical-align: top;
    line-height: 1.6;
}
.pc-table th { vertical-align: top; }
.pc-table thead th {
    background: var(--pr-deep);
    color: #fff;
    font-weight: 950;
    text-align: left;
}
.pc-table thead th:first-child { border-radius: 16px 0 0 0; width: 18%; }
.pc-table thead th:last-child { border-radius: 0 16px 0 0; }
.pc-table td:first-child { width: 18%; }
.pc-table tbody tr:last-child td { border-bottom: 0; }
.pc-table tbody tr:nth-child(even) { background: rgba(246, 247, 251, 0.6); }
.pc-table .dim { font-weight: 700; color: #344054; }
.pc-table .bad { color: var(--pr-danger); }
.pc-table .good { color: var(--pr-ok); }
.pc-table .warn { color: var(--pr-warn); }
.pc-table .nex { font-weight: 800; color: var(--pr-deep); }
.pc-table .highlight { background: rgba(41, 182, 246, 0.08) !important; }
/* IMPORTANT: pc-icon 在表格里是加在 <td> 上的，不能把 td 变成 flex，否则会破坏表格列对齐 */
.pc-table td.pc-icon { display: table-cell !important; }
.pc-table td.pc-icon i.material-symbols-outlined {
    display: inline-block;
    font-size: 1.15rem;
    width: 1.25em;
    min-width: 1.25em;
    margin-right: 8px;
    flex-shrink: 0;
    text-align: center;
    vertical-align: top;
    line-height: 1.4;
}
.pc-dim-title .material-symbols-outlined { font-size: 1.2rem; vertical-align: middle; margin-right: 4px; }
.pc-conclusion .pc-icon { display: inline-flex; align-items: center; gap: 8px; }
.pc-conclusion .pc-icon i.material-symbols-outlined { font-size: 1.25rem; }

.pc-conclusion {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.pc-conclusion .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.05rem;
}
.pc-conclusion .item.no { color: var(--pr-danger); }
.pc-conclusion .item.yes { color: var(--pr-ok); }

.pc-dim-title {
    font-weight: 950;
    color: var(--pr-deep);
    margin: 28px 0 12px 0;
    font-size: 1.1rem;
}
.pc-dim-title:first-of-type { margin-top: 0; }

.pc-testimonial {
    margin-top: 22px;
    background: var(--pr-card);
    border: 1px solid var(--pr-border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
    position: relative;
}
.pc-testimonial::before {
    content: '"';
    position: absolute;
    left: 18px;
    top: 12px;
    font-size: 3rem;
    color: var(--pr-primary);
    opacity: 0.35;
    font-family: Georgia, serif;
}
.pc-testimonial .text {
    color: #344054;
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0 0 14px 0;
    padding-left: 8px;
}
.pc-testimonial .author {
    color: var(--pr-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.pr-final {
    margin-top: 34px;
    background: linear-gradient(135deg, rgba(4, 32, 95, 1) 0%, rgba(41, 182, 246, 1) 150%);
    color: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 56px rgba(16, 24, 40, 0.18);
}
.pr-final .t { font-weight: 950; font-size: 1.35rem; margin-bottom: 8px; }
.pr-final .d { opacity: 0.92; line-height: 1.7; margin: 0 0 20px 0; }
.pr-final .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.pr-final .btns a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 950;
    transition: transform 0.2s ease, background 0.2s ease;
}
.pr-final .btns a.primary {
    background: #fff;
    color: var(--pr-deep) !important;
}
.pr-final .btns a.secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff !important;
}
.pr-final .btns a:hover { transform: translateY(-2px); }
.pr-final .btns a.primary:hover { background: rgba(255,255,255,0.95); }
.pr-final .btns a.secondary:hover { background: rgba(255, 255, 255, 0.22); }

@media (max-width: 992px) {
    .pc-hero h1 { font-size: 2.2rem; }
    .pc-table-wrap { margin-left: -12px; margin-right: -12px; border-radius: 12px; }
}
@media (max-width: 768px) {
    .pc-hero { padding: 96px 0 64px; }
    .pr-final .btns { flex-direction: column; }
}