.elementor-64 .elementor-element.elementor-element-9e08613{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-64 .elementor-element.elementor-element-d89e5d2{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-64 .elementor-element.elementor-element-ab6dfb6{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-64 .elementor-element.elementor-element-a697593{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-64 .elementor-element.elementor-element-8b70729{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-64 .elementor-element.elementor-element-92d1332{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-64 .elementor-element.elementor-element-e4af55a{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ab6dfb6 *//* --------------------------
   Compact Core Business Section
   -------------------------- */

/* 1. 板块基础设置：紧凑、无外边距 */
.compact-services {
    background-color: #F9F8F4;
    padding: 60px 0; /* 上下内边距缩小，更紧凑 */
    margin: 0;       /* 确保没有外边距 */
}

/* 2. 头部样式复用 (与流程图一致) */
.header-refined {
    margin-bottom: 40px; /* 减小头部与卡片的间距 */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.label-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.label-square {
    width: 8px;
    height: 8px;
    background-color: #D6CFC2;
    display: inline-block;
}

.header-refined .label-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888680;
    font-weight: 600;
}

.header-refined .section-title {
    font-size: 36px; /* 标题大小适中 */
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #1A1A1A;
    font-weight: 700;
}

.header-refined .section-desc {
    font-size: 18px;
    color: #555555;
}

/* 3. 布局网格：更小的间距 */
.core-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; /* 间距从40px减小到20px */
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .core-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 4. 卡片样式：高度减小，更精致 */
.core-card {
    position: relative;
    background: #FDFCF9;
    border: 1px solid #E6E4DC;
    border-radius: 8px; /* 圆角稍微减小一点，更利落 */
    padding: 40px 30px; /* 内边距也稍微收紧 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 420px; /* 高度从480减小到420，更紧凑 */
}

/* 重点：悬停边框颜色改为 #B17932 */
.core-card:hover {
    border-color: #B17932; 
    transform: translateY(-3px); /* 上浮幅度减小，更稳重 */
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}

.card-link-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
}

/* 顶部标签 */
.card-badge {
    display: inline-block;
    font-size: 11px; /* 字体稍微调小 */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: #EAE8E0;
    color: #4A4A4A;
    padding: 5px 12px;
    border-radius: 4px; /* 改为小方圆角 */
    margin-bottom: 20px;
}

/* 图标容器 */
.icon-box {
    width: 50px; /* 图标缩小一点 */
    height: 50px;
    color: #1A1A1A;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.icon-box svg {
    width: 100%;
    height: 100%;
}

/* 悬停时图标也变色 */
.core-card:hover .icon-box {
    color: #B17932;
}

.card-title {
    font-size: 24px; /* 标题字号微调 */
    font-weight: 600;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.card-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

/* 优势列表 */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px solid #E6E4DC;
    padding-top: 20px;
}

.benefit-list li {
    font-size: 14px;
    color: #4A4A4A;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* 列表的点也使用主题色 */
.benefit-list li span {
    color: #B17932; 
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

/* 模拟按钮样式 */
.fake-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px; /* 按钮变薄一点 */
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    background: #FDFCF9; 
    color: #1A1A1A;
    border: 1px solid #1A1A1A; /* 边框变细 */
}

/* 定制业务按钮：深色底 */
.fake-btn.btn-dark {
    background: #1A1A1A;
    color: #F9F8F4;
    border-color: #1A1A1A;
}

/* 重点：悬停时按钮变成 #B17932 */
.core-card:hover .fake-btn {
    background: #B17932;
    color: #fff;
    border-color: #B17932;
}

/* 即使是深色按钮，悬停也统一变成主题色 */
.core-card:hover .fake-btn.btn-dark {
    background: #B17932;
    color: #fff;
    border-color: #B17932;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a697593 *//* --------------------------
   Refined Flowchart Section
   -------------------------- */

/* 1. 背景色保持暖米色 */
.process-flow-refined {
    background-color: #F9F8F4;
    padding: 80px 0 60px 0; /* 调整内边距，保持紧凑但透气 */
    overflow: hidden;
}

/* 2. 头部样式复刻 (带小方块) */
.header-refined {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 标签容器 */
.label-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* 方块和文字的间距 */
    margin-bottom: 15px;
}

/* 截图中的小方块 */
.label-square {
    width: 8px;
    height: 8px;
    background-color: #D6CFC2; /* 默认使用浅卡其色，不抢眼 */
    display: inline-block;
}

/* 标签文字 */
.header-refined .label-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888680;
    font-weight: 600;
}

/* 标题 */
.header-refined .section-title {
    font-size: 36px; /* 稍微紧凑一点的大标题 */
    line-height: 1.2;
    margin: 0 0 15px 0;
    color: #1A1A1A;
    font-weight: 700;
}

/* 描述 */
.header-refined .section-desc {
    font-size: 18px;
    color: #555555;
}

/* 3. 流程图容器 */
.flow-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

/* 背景连接线 */
.flow-line-bg {
    position: absolute;
    top: 25px; /* 对齐圆圈中心 */
    left: 40px;
    right: 40px;
    height: 1px; /* 极细线条，更精致 */
    background-color: #E6E4DC;
    z-index: 1;
}

/* 4. 单个步骤 */
.flow-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
    
    /* 初始状态：透明并下移，用于动画 */
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.6s ease forwards;
    animation-delay: var(--delay); /* 使用HTML中的变量 */
}

/* 进场动画关键帧 */
@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 圆形数字标记 */
.step-marker {
    width: 50px;
    height: 50px;
    background-color: #F9F8F4; /* 与背景同色以遮挡线条 */
    border: 1px solid #D1CDC4; /* 默认边框颜色 */
    border-radius: 50%;
    color: #999; /* 默认数字颜色较淡 */
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 弹性过渡 */
    position: relative;
}

/* 步骤文字内容 */
.step-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.step-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    max-width: 150px;
    margin: 0 auto;
}

/* 5. 交互效果 (重点使用 #B17932) */

/* 悬停时：圆圈变化 */
.flow-step:hover .step-marker {
    border-color: #B17932;
    color: #B17932;
    transform: scale(1.15); /* 放大 */
    box-shadow: 0 0 0 5px rgba(177, 121, 50, 0.05); /* 极淡的光晕 */
    background-color: #fff; /* 背景变亮白，更突出 */
}

/* 悬停时：标题变色 */
.flow-step:hover .step-content h4 {
    color: #B17932;
}

/* --------------------------
   Mobile Responsiveness (垂直时间轴)
   -------------------------- */
@media (max-width: 768px) {
    .header-refined .section-title {
        font-size: 28px;
    }
    
    .flow-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px; /* 左侧留出空间给线 */
    }

    /* 垂直线 */
    .flow-line-bg {
        top: 0;
        bottom: 0;
        left: 54px; /* 调整线的位置 */
        right: auto;
        width: 1px;
        height: 100%;
    }

    .flow-step {
        flex-direction: row;
        text-align: left;
        margin-bottom: 35px;
        align-items: flex-start;
        width: 100%;
        opacity: 1; /* 移动端取消进场动画，防止滚动闪烁，或者保留看您喜好 */
        transform: none;
        animation: none;
    }

    .step-marker {
        margin-bottom: 0;
        margin-right: 25px;
        flex-shrink: 0;
    }

    .step-content p {
        margin: 0;
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-92d1332 *//* --- SHOWCASE SECTION (最终规范化样式) --- */
.showcase-section {
    background: var(--bg-root);
    text-align: center;
}

/* 
 * [规范化修正] 
 * 根据您最终提供的标准，调整 .label-text 的字体大小和粗细。
*/
.showcase-section .label-text {
    font-size: 13px; /* ★ 修正：字体大小从 15px 改为 13px */
    font-weight: 600; /* ★ 修正：字体粗细从 500 改为 600 */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

/* 
 * [规范化修正] 
 * 根据您最终提供的标准，将 h2 标题恢复为正确的尺寸和粗细。
*/
.showcase-section h2 {
    font-size: 36px; /* ★ 修正：字体大小从 64px 恢复为 36px */
    line-height: 1.2; /* ★ 修正：行高恢复为 1.2 */
    font-weight: 700; /* ★ 修正：字体粗细从 600 改为 700 */
    margin-bottom: 60px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 80px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-green);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- TRUST BAR (样式保持不变) --- */
.trust-bar {
    background: var(--bg-panel);
    border: 1px solid var(--line-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.trust-bar h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.trust-logos img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(70%);
    transition: filter 0.4s ease;
}

.trust-logos img:hover {
    filter: grayscale(0%) opacity(100%);
}

/* --- 响应式设计 (已移除针对h2的错误调整) --- */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        gap: 15px;
    }
    .trust-logos {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}/* End custom CSS */