
/* --- HA3LX Comparison Table Scope (强制全屏居中版) --- */
.hz-comp-scope {
    --hz-orange: #ec682e;
    --hz-blue-dark: #002B49;
    --text-dark: #333333;
    --text-gray: #666666;
    
    background-color: #f8f9fb;
    padding: 100px 0;
    
    /* 1. 强制全屏背景居中 */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    /* 2. 强制内部内容水平居中 */
    display: flex;
    justify-content: center;
}

.hz-comp-container {
    width: 100%;
    max-width: 1200px; /* 锁定宽度 */
    padding: 0 20px;
    margin: 0 auto !important; /* 强制左右边距自动 */
    display: flex;
    flex-direction: column;
    align-items: center; /* 确保标题和表格在这一层也是居中的 */
}

/* 标题样式统一且居中 */
.hz-comp-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.hz-comp-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 36px;
    color: var(--hz-blue-dark);
    margin: 0 0 20px 0;
}

.hz-comp-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 表格包装器及居中 */
.hz-table-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* 强制表格在包装器内居中 */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hz-comp-table {
    width: 100%;
    max-width: 1100px; /* 稍微收窄一点显得更精致 */
    margin: 0 auto !important; /* 核心居中指令 */
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* 表头样式 */
.hz-comp-table thead th {
    background-color: var(--hz-blue-dark);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 25px 20px;
    text-align: left;
    font-size: 15px;
}

/* HERTZINNO 高亮列头 */
.hz-comp-table thead th.hz-highlight-head {
    background-color: var(--hz-orange);
    position: relative;
    text-align: center;
}

.hz-winner-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--hz-orange);
    padding: 2px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
}

/* 表格单元格 */
.hz-comp-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
}

.hz-first-col {
    font-weight: 700;
    color: var(--hz-blue-dark);
    background-color: #fafafa;
    width: 25%;
}

.hz-highlight-cell {
    background-color: rgba(236, 104, 46, 0.03);
    border-left: 1px solid rgba(236, 104, 46, 0.1);
    border-right: 1px solid rgba(236, 104, 46, 0.1);
}

.hz-spec-text {
    font-weight: 700;
    color: var(--hz-orange);
}

.hz-icon-v { color: #2ecc71; margin-right: 8px; font-weight: bold; }
.hz-icon-x { color: #e74c3c; margin-right: 8px; font-weight: bold; }

small {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 5px;
}

@media screen and (max-width: 992px) {
    .hz-comp-table { min-width: 700px; }
    .hz-comp-header h2 { font-size: 28px; }
}
