
/* --- HA3LX Transformer Process Section (视觉统一版) --- */
.hz-process-scope {
    --hz-orange: #ec682e;
    --hz-blue-dark: #002B49;
    --text-dark: #333333;
    --text-gray: #666666;
    
    background-color: #f8f9fb; /* 浅灰色背景，与相邻模块形成错落感 */
    padding: 100px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    display: flex;
    justify-content: center;
}

.hz-process-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 介绍文案部分 */
.hz-process-intro {
    text-align: center;
    max-width: 900px;
    margin-bottom: 60px;
}

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

.hz-process-intro p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* 三个步骤卡片网格 */
.hz-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 强制三列并排 */
    gap: 30px;
    width: 100%;
    margin-bottom: 50px;
}

.hz-step-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    border-top: 5px solid var(--hz-orange); /* 品牌橙色装饰条 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hz-step-card:hover {
    transform: translateY(-10px);
}

.hz-step-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--hz-blue-dark);
    margin: 0 0 15px 0;
}

.hz-step-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* 引导语 */
.hz-transition-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--hz-blue-dark);
    font-weight: 500;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

/* 移动端适配 */
@media screen and (max-width: 992px) {
    .hz-process-grid { grid-template-columns: 1fr; }
    .hz-process-intro h2 { font-size: 28px; }
}
