/* ============================================================
   算狐科技 · 视觉设计服务信息发布平台 · 首页样式 v3.0
   配色：橙（狐狸橙 / banner 橙）+ 炭黑 + 暖白
   类名前缀：zh_
   ============================================================ */

/* ========== 通用辅助类 ========== */
.zh_eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-primary);
    letter-spacing: 2px;
    padding: 5px 14px;
    background: var(--zh-primary-soft);
    border-radius: var(--zh-radius-pill);
    margin-bottom: 14px;
}
.zh_section_title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--zh-text-primary);
    margin: 0 0 14px;
    line-height: 1.3;
}
.zh_section_desc {
    font-size: 15px;
    color: var(--zh-text-body);
    margin: 0;
    line-height: 1.75;
}
.zh_section_desc_sm {
    font-size: 14px;
    color: var(--zh-text-muted);
    margin: 0;
}
.zh_section_head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.zh_section_head_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.zh_section_more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--zh-primary);
    transition: gap .25s ease;
}
.zh_section_more:hover { color: var(--zh-primary-hover); gap: 10px; }
.zh_highlight {
    background: var(--zh-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* ========== 大尺寸按钮 ========== */
.zh_btn_gradient_lg {
    background: var(--zh-gradient-primary);
    color: #fff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    box-shadow: 0 8px 24px rgba(242, 106, 27, .30);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}
.zh_btn_gradient_lg:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(242, 106, 27, .42);
}
.zh_btn_outline_lg {
    background: rgba(255, 255, 255, .85);
    color: var(--zh-primary);
    border: 1.5px solid var(--zh-primary);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all .3s ease;
}
.zh_btn_outline_lg:hover {
    color: #fff;
    background: var(--zh-primary);
    transform: translateY(-2px);
}
.zh_btn_white_lg {
    background: #fff;
    color: var(--zh-primary);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}
.zh_btn_white_lg:hover {
    color: var(--zh-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .24);
}

/* ============================================================
   ① Hero 全幅背景大图
   ============================================================ */
.zh_hero {
    position: relative;
    min-height: 660px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.zh_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255, 252, 249, .96) 0%,
        rgba(255, 248, 242, .86) 34%,
        rgba(255, 248, 242, .40) 58%,
        rgba(255, 255, 255, .06) 78%,
        transparent 100%);
    z-index: 1;
}
.zh_hero_inner {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 60px;
    padding-bottom: 70px;
}
.zh_hero_inner > * { max-width: 600px; }
.zh_hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--zh-primary-soft);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--zh-primary);
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(242, 106, 27, .12);
}
.zh_hero_badge i { color: var(--zh-primary); }
.zh_hero_title {
    font-size: clamp(30px, 4.4vw, 54px);
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 22px;
    color: var(--zh-text-primary);
    letter-spacing: -.5px;
}
.zh_hero_desc {
    font-size: 16px;
    line-height: 1.85;
    color: var(--zh-text-body);
    margin: 0 0 36px;
    max-width: 540px;
}
.zh_hero_cta {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}
.zh_hero_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 14px;
    color: var(--zh-text-body);
}
.zh_hero_tags span { display: inline-flex; align-items: center; gap: 6px; }
.zh_hero_tags i {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--zh-gradient-primary);
    color: #fff;
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.zh_hero_scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--zh-primary);
    font-size: 18px;
    animation: zh_bounce 1.8s ease-in-out infinite;
}
@keyframes zh_bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: .55; }
    50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================================
   ② 数据信任条（白底卡片，上压 Hero）
   ============================================================ */
.zh_section_stats {
    background: #fff;
    padding: 0;
}
.zh_stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-xl);
    box-shadow: var(--zh-shadow-card);
    margin: -56px 0 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.zh_stat {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--zh-border);
}
.zh_stat:last-child { border-right: none; }
.zh_stat_num {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: var(--zh-primary);
    line-height: 1;
    margin: 0 0 8px;
}
.zh_stat_num span { font-size: 18px; font-weight: 700; }
.zh_stat_label {
    font-size: 14px;
    color: var(--zh-text-body);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.zh_stat_label i { color: var(--zh-accent); font-size: 12px; }

/* ============================================================
   ③ 服务方向（海报设计 / 展板设计 + 细分标签）
   ============================================================ */
.zh_section_dirs {
    background: #fff;
    padding: 80px 0;
}
.zh_dirs_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.zh_dir_card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px;
    border-radius: var(--zh-radius-xl);
    background: var(--zh-bg);
    border: 1px solid var(--zh-border);
    overflow: hidden;
    transition: all .35s ease;
    color: var(--zh-text-primary);
}
.zh_dir_card::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--zh-gradient-glow);
    opacity: .8;
    transition: transform .4s ease;
}
.zh_dir_card:hover {
    transform: translateY(-6px);
    border-color: var(--zh-primary);
    box-shadow: var(--zh-shadow-card-hover);
    color: var(--zh-text-primary);
}
.zh_dir_card:hover::before { transform: scale(1.3); }
.zh_dir_head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}
.zh_dir_icon {
    width: 64px; height: 64px;
    border-radius: var(--zh-radius-lg);
    background: var(--zh-gradient-primary);
    color: #fff;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(242, 106, 27, .28);
}
.zh_dir_head h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--zh-text-primary);
}
.zh_dir_count {
    font-size: 13px;
    color: var(--zh-primary);
    font-weight: 600;
}
.zh_dir_desc {
    font-size: 14px;
    color: var(--zh-text-body);
    line-height: 1.75;
    margin: 0 0 20px;
    position: relative;
    z-index: 2;
}
.zh_dir_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.zh_dir_tag {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    color: var(--zh-text-body);
    transition: all .25s ease;
}
.zh_dir_card:hover .zh_dir_tag { border-color: var(--zh-primary-soft); }
.zh_dir_link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-primary);
    position: relative;
    z-index: 2;
    transition: gap .25s ease;
}
.zh_dir_card:hover .zh_dir_link { gap: 12px; }

/* ============================================================
   ④ 精选推荐信息（编辑式：左大图 + 右列表）
   ============================================================ */
.zh_section_feat {
    background: var(--zh-bg-light);
    padding: 80px 0;
}
.zh_feat_layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
/* 左侧大卡 */
.zh_feat_main {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-xl);
    overflow: hidden;
    transition: all .3s ease;
    color: var(--zh-text-primary);
}
.zh_feat_main:hover {
    transform: translateY(-4px);
    border-color: var(--zh-primary);
    box-shadow: var(--zh-shadow-card-hover);
    color: var(--zh-text-primary);
}
.zh_feat_main_thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--zh-bg-light);
    overflow: hidden;
}
.zh_feat_main_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_feat_thumb_ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--zh-gradient-hero);
    color: var(--zh-primary);
    font-size: 44px;
}
.zh_feat_tag {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 13px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    background: var(--zh-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(242, 106, 27, .3);
}
.zh_feat_pick {
    position: absolute;
    top: 14px; right: 14px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    background: rgba(30, 31, 36, .82);
    color: #fff;
    display: inline-flex; align-items: center; gap: 5px;
    backdrop-filter: blur(4px);
}
.zh_feat_pick i { color: var(--zh-accent); }
.zh_feat_main_body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.zh_feat_main_body h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 14px;
    color: var(--zh-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_feat_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: var(--zh-text-muted);
    margin-bottom: 16px;
}
.zh_feat_meta span { display: inline-flex; align-items: center; gap: 6px; }
.zh_feat_meta i { color: var(--zh-primary); font-size: 12px; }
.zh_feat_main_foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--zh-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zh_feat_more_link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--zh-primary);
    transition: gap .25s ease;
}
.zh_feat_main:hover .zh_feat_more_link { gap: 10px; }
.zh_feat_views { font-size: 13px; color: var(--zh-text-muted); }
.zh_feat_views i { color: var(--zh-text-muted); margin-right: 4px; }

/* 右侧列表 */
.zh_feat_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.zh_feat_item {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 14px;
    transition: all .25s ease;
    color: var(--zh-text-primary);
    flex: 1;
}
.zh_feat_item:hover {
    border-color: var(--zh-primary);
    box-shadow: var(--zh-shadow-card);
    transform: translateX(4px);
    color: var(--zh-text-primary);
}
.zh_feat_item_thumb {
    width: 110px;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--zh-radius-md);
    overflow: hidden;
    background: var(--zh-bg-light);
}
.zh_feat_item_thumb img { width: 100%; height: 100%; object-fit: contain; }
.zh_feat_item_thumb .zh_feat_thumb_ph { font-size: 24px; }
.zh_feat_item_body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.zh_feat_item_body h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin: 2px 0 8px;
    color: var(--zh-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_feat_item_meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: var(--zh-text-muted);
}
.zh_feat_item_meta span { display: inline-flex; align-items: center; gap: 5px; }
.zh_feat_item_meta i { color: var(--zh-primary); font-size: 11px; }
.zh_feat_item_cat {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    color: var(--zh-primary);
    background: var(--zh-primary-soft);
    padding: 2px 9px;
    border-radius: var(--zh-radius-pill);
}

/* ============================================================
   ⑤ 平台介绍图文区
   ============================================================ */
.zh_section_about {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.zh_about_grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
.zh_about_content { order: 1; }
.zh_about_image { order: 2; position: relative; }
.zh_about_image img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: var(--zh-radius-xl);
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(30, 31, 36, .12), 0 0 60px rgba(242, 106, 27, .12);
    position: relative;
    z-index: 2;
    margin-left: auto;
}
.zh_about_glow {
    position: absolute;
    width: 360px; height: 360px;
    background: var(--zh-gradient-glow);
    z-index: 1;
    bottom: -60px; right: -40px;
    pointer-events: none;
}
.zh_about_title {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    color: var(--zh-text-primary);
    line-height: 1.3;
    margin: 0 0 20px;
}
.zh_about_desc {
    font-size: 14.5px;
    color: var(--zh-text-body);
    line-height: 1.85;
    margin: 0 0 24px;
}
.zh_check_list { list-style: none; margin: 0 0 28px; padding: 0; }
.zh_check_list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--zh-text-body);
}
.zh_check_list i { color: var(--zh-primary); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.zh_about_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-primary);
    transition: gap .25s ease;
}
.zh_about_link:hover { color: var(--zh-primary-hover); gap: 12px; }

/* ============================================================
   ⑥ 平台优势
   ============================================================ */
.zh_section_adv {
    background: var(--zh-bg-light);
    padding: 80px 0;
}
.zh_adv_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.zh_adv_card {
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 34px 26px;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.zh_adv_card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--zh-gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.zh_adv_card:hover {
    transform: translateY(-4px);
    border-color: var(--zh-primary);
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_adv_card:hover::before { transform: scaleX(1); }
.zh_adv_icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    border-radius: var(--zh-radius-lg);
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.zh_adv_card:hover .zh_adv_icon {
    background: var(--zh-gradient-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(242, 106, 27, .28);
}
.zh_adv_card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 12px;
}
.zh_adv_card p {
    font-size: 13.5px;
    color: var(--zh-text-body);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   ⑦ 设计师入驻流程
   ============================================================ */
.zh_section_process {
    background: #fff;
    padding: 80px 0;
}
.zh_process_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    margin-top: 30px;
}
.zh_process_step {
    position: relative;
    background: var(--zh-bg);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 32px 24px 26px;
    text-align: center;
    transition: all .3s ease;
}
.zh_process_step:hover {
    transform: translateY(-4px);
    border-color: var(--zh-primary);
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_process_num {
    position: absolute;
    top: -22px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--zh-gradient-primary);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(242, 106, 27, .3);
}
.zh_process_icon {
    width: 76px; height: 76px;
    margin: 16px auto 18px;
    border-radius: var(--zh-radius-lg);
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.zh_process_step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 8px;
}
.zh_process_step p {
    font-size: 13px;
    color: var(--zh-text-body);
    line-height: 1.65;
    margin: 0;
}
.zh_process_arrow {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    color: var(--zh-border-strong);
    font-size: 18px;
    z-index: 2;
}
.zh_process_cta { text-align: center; }

/* ============================================================
   ⑧ 常见问题 FAQ
   ============================================================ */
.zh_section_faq {
    background: var(--zh-bg-light);
    padding: 80px 0;
}
.zh_faq_wrap {
    max-width: 860px;
    margin: 0 auto;
}
.zh_faq_item {
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.zh_faq_item[open] {
    border-color: var(--zh-primary);
    box-shadow: var(--zh-shadow-card);
}
.zh_faq_q {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.zh_faq_q::-webkit-details-marker { display: none; }
.zh_faq_q .zh_faq_qicon {
    width: 26px; height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.zh_faq_q .zh_faq_arrow {
    margin-left: auto;
    color: var(--zh-text-muted);
    font-size: 13px;
    transition: transform .3s ease;
}
.zh_faq_item[open] .zh_faq_q .zh_faq_arrow { transform: rotate(180deg); color: var(--zh-primary); }
.zh_faq_a {
    padding: 0 24px 22px 62px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--zh-text-body);
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
    .zh_hero { min-height: 560px; }
    .zh_stats_grid { grid-template-columns: repeat(2, 1fr); }
    .zh_stat:nth-child(2) { border-right: none; }
    .zh_stat:nth-child(1), .zh_stat:nth-child(2) { border-bottom: 1px solid var(--zh-border); }
    .zh_dirs_grid { grid-template-columns: 1fr; }
    .zh_feat_layout { grid-template-columns: 1fr; }
    .zh_about_grid { grid-template-columns: 1fr; gap: 40px; }
    .zh_about_content { order: 2; }
    .zh_about_image { order: 1; }
    .zh_about_image img { max-width: 380px; margin: 0 auto; display: block; }
    .zh_adv_grid { grid-template-columns: repeat(2, 1fr); }
    .zh_process_grid { grid-template-columns: repeat(2, 1fr); }
    .zh_process_arrow { display: none; }
}
@media (max-width: 768px) {
    .zh_hero { min-height: 480px; }
    .zh_hero_overlay {
        background: linear-gradient(90deg,
            rgba(255, 252, 249, .96) 0%,
            rgba(255, 250, 245, .86) 60%,
            rgba(255, 252, 249, .55) 100%);
    }
    .zh_hero_inner { padding-top: 36px; padding-bottom: 56px; max-width: 100%; }
    .zh_hero_title { font-size: 28px; }
    .zh_hero_desc { font-size: 14px; }
    .zh_hero_tags { gap: 12px; font-size: 13px; }
    .zh_section_stats .zh_stats_grid { margin-top: -40px; }
    .zh_section_dirs,
    .zh_section_feat,
    .zh_section_about,
    .zh_section_adv,
    .zh_section_process,
    .zh_section_faq { padding: 56px 0; }
    .zh_stats_grid { grid-template-columns: 1fr 1fr; }
    .zh_stat { padding: 24px 14px; }
    .zh_dir_card { padding: 28px 22px; }
    .zh_dir_head h3 { font-size: 21px; }
    .zh_feat_item_thumb { width: 92px; }
    .zh_adv_grid { grid-template-columns: 1fr; }
    .zh_process_grid { grid-template-columns: 1fr; }
    .zh_section_head { margin-bottom: 32px; }
    .zh_section_head_row { flex-direction: column; align-items: flex-start; }
    .zh_about_image img { max-width: 300px; }
    .zh_check_list li { font-size: 13px; }
    .zh_faq_a { padding-left: 24px; }
}
