/* ============================================================
   嗨刻 · 服装服饰信息发布平台 · 首页样式 v2.0
   配色：时尚靛蓝 + 工坊橙（取自 logo / banner）
   类名前缀：zh_
   ============================================================ */

/* ========== 通用辅助类 ========== */
.zh_section_head_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.zh_section_head_row .zh_eyebrow { margin-bottom: 10px; }
.zh_section_head_row .zh_section_title { margin-bottom: 6px; }
.zh_section_desc_sm {
    font-size: 14px;
    color: var(--zh-text-muted);
    margin: 0;
}
.zh_section_more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zh-primary);
    transition: gap .25s ease, background .25s ease;
    padding: 8px 16px;
    border: 1px solid var(--zh-primary-soft);
    border-radius: var(--zh-radius-pill);
}
.zh_section_more:hover {
    color: #fff;
    background: var(--zh-primary);
    border-color: var(--zh-primary);
    gap: 10px;
}

/* ========== 大尺寸按钮 ========== */
.zh_btn_warm_lg {
    background: var(--zh-accent);
    color: #fff;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    box-shadow: 0 10px 22px rgba(241, 138, 45, .32);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}
.zh_btn_warm_lg:hover {
    color: #fff;
    background: var(--zh-accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(241, 138, 45, .42);
}
.zh_btn_outline_lg {
    background: rgba(255, 255, 255, .65);
    color: var(--zh-primary-deep);
    border: 1.5px solid var(--zh-primary);
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: all .3s ease;
}
.zh_btn_outline_lg:hover {
    color: #fff;
    background: var(--zh-primary);
    transform: translateY(-2px);
}

/* ============================================================
   ① Hero（v1.2：banner.jpg 作背景，文字居中对齐 banner 中间留白区）
   ============================================================ */
.zh_hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
    /* 高度按 banner.jpg 真实比例 1832:859 ≈ 2.13:1 自适应，最高 720px */
    min-height: clamp(420px, 47vw, 720px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 中央径向虚光覆盖：让文字所在中间区更白净易读，两侧服装画面保持鲜艳 */
.zh_hero_overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 55% 70% at center,
        rgba(255, 255, 255, .82) 0%,
        rgba(255, 255, 255, .55) 40%,
        rgba(255, 255, 255, .15) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.zh_hero > .zh_container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 100px; /* 给底部信任带留位 */
}

.zh_hero_text {
    max-width: 680px;
    margin: 0 auto;
}
.zh_hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(30, 91, 184, .14);
    color: var(--zh-primary-deep);
    border: 1px solid rgba(30, 91, 184, .22);
    border-radius: var(--zh-radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.zh_hero_eyebrow i { color: var(--zh-accent); }

.zh_hero_title {
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--zh-text-primary);
    line-height: 1.25;
    margin: 0 0 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(255, 255, 255, .6);
}
.zh_hero_title em {
    font-style: normal;
    font-weight: 800;
    display: inline-block;
    margin-top: 6px;
}

.zh_hero_desc {
    font-size: 15.5px;
    color: var(--zh-text-body);
    line-height: 1.85;
    margin: 0 auto 22px;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(255, 255, 255, .55);
}

.zh_hero_chips {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}
.zh_hero_chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    font-size: 13px;
    color: var(--zh-text-primary);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(15, 61, 134, .06);
}
.zh_hero_chip i { color: var(--zh-primary); font-size: 12px; }

.zh_hero_cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 底部信任徽章 + 数据条（绝对定位贴在 hero 底部） */
.zh_hero_footer {
    position: absolute;
    left: 0; right: 0; bottom: 24px;
    z-index: 3;
}
.zh_hero_footer_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 30px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-pill);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(15, 61, 134, .12);
    max-width: 1080px;
    margin: 0 auto;
}
.zh_hero_stat {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    text-align: center;
}
.zh_hero_stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--zh-primary-deep);
    line-height: 1.1;
    letter-spacing: .5px;
}
.zh_hero_stat strong em {
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: var(--zh-accent);
    margin-left: 3px;
}
.zh_hero_stat span {
    display: block;
    font-size: 12px;
    color: var(--zh-text-muted);
    margin-top: 4px;
    letter-spacing: .5px;
}
.zh_hero_stat_sep {
    width: 1px;
    height: 28px;
    background: var(--zh-border);
}
.zh_hero_stat_sep_lg {
    height: 32px;
    background: var(--zh-border-strong);
    margin: 0 8px;
}
.zh_hero_badges_inline {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 24px;
    font-size: 13px;
    color: var(--zh-text-primary);
    font-weight: 600;
}
.zh_hero_badges_inline span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.zh_hero_badges_inline span i { color: var(--zh-accent); font-size: 13px; }

/* ============================================================
   ② 平台优势 / 信任徽章
   ============================================================ */
.zh_section_trust {
    padding: 64px 0;
    background: #fff;
    border-bottom: 1px solid var(--zh-border);
}
.zh_trust_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.zh_trust_card {
    position: relative;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 28px 22px;
    text-align: center;
    transition: all .3s ease;
    overflow: hidden;
}
.zh_trust_card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--zh-gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.zh_trust_card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_trust_card:hover::before { transform: scaleX(1); }
.zh_trust_icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--zh-primary-soft);
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 24px;
    transition: all .3s ease;
}
.zh_trust_card:hover .zh_trust_icon {
    background: var(--zh-primary);
    color: #fff;
    transform: scale(1.05);
}
.zh_trust_card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 8px;
}
.zh_trust_card p {
    font-size: 13.5px;
    color: var(--zh-text-muted);
    margin: 0;
    line-height: 1.75;
}

/* ============================================================
   ③ 关于嗨刻
   ============================================================ */
.zh_section_about {
    padding: 96px 0;
    background: var(--zh-bg);
    position: relative;
    overflow: hidden;
}
.zh_section_about::before {
    content: "";
    position: absolute;
    top: -120px; left: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(30, 91, 184, .08) 0%, transparent 70%);
    pointer-events: none;
}
.zh_section_about::after {
    content: "";
    position: absolute;
    bottom: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(241, 138, 45, .10) 0%, transparent 70%);
    pointer-events: none;
}
.zh_about_grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.zh_about_content .zh_eyebrow { margin-bottom: 18px; }
.zh_about_title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--zh-text-primary);
    line-height: 1.3;
    margin: 0 0 22px;
}
.zh_about_desc {
    font-size: 15px;
    color: var(--zh-text-body);
    line-height: 1.95;
    margin: 0 0 24px;
}
.zh_check_list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.zh_check_list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--zh-text-primary);
}
.zh_check_list li i {
    color: var(--zh-primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}
.zh_about_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--zh-primary);
    color: #fff;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: var(--zh-radius-pill);
    transition: all .25s ease;
    box-shadow: 0 6px 16px rgba(30, 91, 184, .26);
}
.zh_about_link:hover {
    color: #fff;
    background: var(--zh-primary-hover);
    transform: translateX(4px);
}

.zh_about_image {
    position: relative;
}
.zh_about_image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--zh-radius-xl);
    box-shadow: 0 16px 40px rgba(15, 61, 134, .18);
    object-fit: cover;
    aspect-ratio: 16 / 10;
}
.zh_about_image_bg {
    position: absolute;
    top: -16px; right: -16px;
    width: 78%;
    height: 92%;
    background: var(--zh-gradient-accent);
    border-radius: var(--zh-radius-xl);
    z-index: 1;
    opacity: .12;
}
.zh_about_image_card {
    position: absolute;
    bottom: -22px; left: -22px;
    background: #fff;
    border-radius: var(--zh-radius-lg);
    padding: 14px 18px;
    box-shadow: 0 12px 32px rgba(15, 61, 134, .18);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    min-width: 220px;
}
.zh_about_image_card_icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--zh-accent-soft);
    color: var(--zh-accent-deep);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.zh_about_image_card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin-bottom: 2px;
}
.zh_about_image_card em {
    display: block;
    font-style: normal;
    font-size: 11.5px;
    color: var(--zh-text-muted);
    letter-spacing: .5px;
}

/* ============================================================
   ④ 精选服装信息 · Bento
   ============================================================ */
.zh_section_bento {
    padding: 96px 0;
    background: var(--zh-bg);
}
.zh_bento_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 20px;
}
.zh_bento_card {
    position: relative;
    border-radius: var(--zh-radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--zh-border);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.zh_bento_card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_bento_main {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
}
.zh_bento_main .zh_bento_thumb {
    width: 100%;
    height: 100%;
    flex: 1;
}
.zh_bento_main .zh_bento_thumb img,
.zh_bento_main .zh_bento_thumb_placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--zh-cream);
}
.zh_bento_main .zh_bento_thumb_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zh-primary);
    font-size: 80px;
    background: var(--zh-gradient-hero);
}
.zh_bento_overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px 26px 22px;
    background: linear-gradient(180deg, rgba(15, 61, 134, 0) 0%, rgba(15, 61, 134, .85) 100%);
    color: #fff;
}
.zh_bento_cat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: var(--zh-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--zh-radius-sm);
    margin-bottom: 10px;
}
.zh_bento_overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.zh_bento_main_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .85);
}
.zh_bento_main_meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.zh_bento_main_meta i { font-size: 11px; }

.zh_bento_small .zh_bento_thumb {
    height: 130px;
    background: var(--zh-cream);
    position: relative;
}
.zh_bento_small .zh_bento_thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.zh_bento_small .zh_bento_thumb_placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--zh-primary);
    font-size: 36px;
    background: linear-gradient(135deg, var(--zh-primary-soft), #fff);
}
.zh_bento_body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.zh_bento_body h4 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--zh-text-primary);
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zh_bento_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--zh-text-muted);
    margin-top: auto;
}
.zh_bento_meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.zh_bento_placeholder {
    background: linear-gradient(135deg, #fff, var(--zh-bg-light));
    border: 1px dashed var(--zh-border-strong);
}
.zh_bento_placeholder:hover { transform: none; box-shadow: none; border-color: var(--zh-border-strong); }
.zh_bento_placeholder .zh_bento_body h4 { color: var(--zh-text-muted); }

/* ============================================================
   ⑥ 服务流程（4 步）
   ============================================================ */
.zh_section_process {
    padding: 96px 0;
    background: linear-gradient(180deg, #fff 0%, var(--zh-cream) 100%);
    position: relative;
}
.zh_process_track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.zh_process_track::before {
    content: "";
    position: absolute;
    top: 76px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--zh-accent) 0,
        var(--zh-accent) 8px,
        transparent 8px,
        transparent 14px
    );
    z-index: 1;
}
.zh_process_step {
    position: relative;
    background: #fff;
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-lg);
    padding: 30px 22px 24px;
    text-align: center;
    z-index: 2;
    transition: all .3s ease;
}
.zh_process_step:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_process_num {
    position: absolute;
    top: 14px; right: 18px;
    font-size: 36px;
    font-weight: 800;
    color: var(--zh-primary-soft);
    line-height: 1;
    letter-spacing: 1px;
}
.zh_process_icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--zh-primary);
    color: #fff;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(30, 91, 184, .30);
    transition: all .3s ease;
}
.zh_process_step:hover .zh_process_icon {
    background: var(--zh-accent);
    box-shadow: 0 8px 20px rgba(241, 138, 45, .36);
    transform: rotate(-6deg) scale(1.05);
}
.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-muted);
    margin: 0;
    line-height: 1.75;
}

/* ============================================================
   ⑦ 品质亮点
   ============================================================ */
.zh_section_craft {
    padding: 96px 0;
    background: #fff;
}
.zh_craft_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.zh_craft_card {
    background: linear-gradient(180deg, var(--zh-primary-soft) 0%, #fff 100%);
    border: 1px solid var(--zh-border);
    border-radius: var(--zh-radius-xl);
    padding: 36px 30px 32px;
    text-align: center;
    transition: all .3s ease;
}
.zh_craft_card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--zh-shadow-card-hover);
}
.zh_craft_icon {
    width: 78px; height: 78px;
    margin: 0 auto 22px;
    border-radius: var(--zh-radius-lg);
    background: #fff;
    color: var(--zh-primary);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 22px rgba(30, 91, 184, .14);
    transition: all .3s ease;
}
.zh_craft_card:hover .zh_craft_icon {
    background: var(--zh-gradient-accent);
    color: #fff;
    transform: rotate(-6deg);
}
.zh_craft_card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--zh-text-primary);
    margin: 0 0 10px;
}
.zh_craft_card p {
    font-size: 14px;
    color: var(--zh-text-body);
    margin: 0;
    line-height: 1.85;
}

/* ============================================================
   ⑧ CTA 全幅
   ============================================================ */
.zh_section_cta {
    position: relative;
    padding: 76px 0;
    background: var(--zh-gradient-cta);
    overflow: hidden;
}
.zh_section_cta::before {
    content: "";
    position: absolute;
    top: -120px; left: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, .18) 0%, transparent 70%);
    pointer-events: none;
}
.zh_section_cta::after {
    content: "";
    position: absolute;
    bottom: -100px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, .14) 0%, transparent 70%);
    pointer-events: none;
}
.zh_cta_inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 760px;
    margin: 0 auto;
}
.zh_cta_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    border-radius: var(--zh-radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.zh_cta_title {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 18px;
    letter-spacing: 1px;
}
.zh_cta_highlight {
    color: #FFEFD9;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .55);
    text-underline-offset: 8px;
}
.zh_cta_desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.85;
    margin: 0 0 32px;
}
.zh_cta_buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}
.zh_cta_btn_white {
    padding: 14px 30px;
    font-size: 15px;
    background: #fff;
    color: var(--zh-primary-deep);
    border-radius: var(--zh-radius-pill);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}
.zh_cta_btn_white:hover {
    color: var(--zh-primary-hover);
    transform: translateY(-2px);
    background: #fff;
}
.zh_cta_btn_outline {
    padding: 14px 30px;
    font-size: 15px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .65);
    border-radius: var(--zh-radius-pill);
}
.zh_cta_btn_outline:hover {
    color: var(--zh-primary-deep);
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}
.zh_cta_hotline {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}
.zh_cta_hotline i { color: #FFEFD9; margin-right: 5px; }
.zh_cta_hotline a {
    color: #FFC787;
    font-weight: 700;
    letter-spacing: .5px;
}
.zh_cta_hotline a:hover { color: #fff; }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1200px) {
    .zh_trust_grid { grid-template-columns: repeat(2, 1fr); }
    .zh_craft_grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
    .zh_hero { min-height: clamp(420px, 56vw, 620px); }
    .zh_hero > .zh_container { padding-bottom: 130px; }
    .zh_hero_overlay {
        background: radial-gradient(
            ellipse 70% 80% at center,
            rgba(255, 255, 255, .88) 0%,
            rgba(255, 255, 255, .60) 50%,
            rgba(255, 255, 255, .25) 85%,
            rgba(255, 255, 255, 0) 100%
        );
    }
    .zh_hero_badges_inline { display: none; }
    .zh_hero_stat_sep_lg { display: none; }
    .zh_about_grid { grid-template-columns: 1fr; gap: 40px; }
    .zh_about_image_card { left: 16px; bottom: -18px; min-width: 200px; }
    .zh_process_track { grid-template-columns: repeat(2, 1fr); }
    .zh_process_track::before { display: none; }
    .zh_bento_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .zh_bento_main { grid-column: span 2; grid-row: auto; }
    .zh_bento_main .zh_bento_thumb { height: 280px; flex: none; }
}
@media (max-width: 768px) {
    .zh_section_about,
    .zh_section_bento,
    .zh_section_process,
    .zh_section_craft { padding: 60px 0; }
    .zh_section_trust { padding: 48px 0; }
    .zh_section_cta { padding: 56px 0; }

    .zh_hero {
        min-height: 540px;
        background-position: center;
    }
    .zh_hero_overlay {
        background: linear-gradient(180deg,
            rgba(255, 255, 255, .88) 0%,
            rgba(255, 255, 255, .70) 60%,
            rgba(255, 255, 255, .40) 100%);
    }
    .zh_hero > .zh_container { padding: 24px 18px 140px; }
    .zh_hero_text { max-width: 100%; }
    .zh_hero_title { font-size: 24px; }
    .zh_hero_desc { font-size: 14px; }
    .zh_hero_cta { gap: 10px; }
    .zh_hero_footer { bottom: 16px; }
    .zh_hero_footer_inner {
        flex-direction: column;
        padding: 14px 24px;
        border-radius: var(--zh-radius-lg);
        gap: 8px;
    }
    .zh_hero_stat { padding: 8px 0; flex-direction: row; gap: 8px; }
    .zh_hero_stat strong { font-size: 18px; }
    .zh_hero_stat span { margin-top: 0; }
    .zh_hero_stat_sep { width: 80%; height: 1px; }

    .zh_btn_warm_lg, .zh_btn_outline_lg { padding: 12px 22px; font-size: 14px; }

    .zh_trust_grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .zh_trust_card { padding: 22px 16px; }
    .zh_trust_icon { width: 50px; height: 50px; font-size: 20px; }

    .zh_bento_grid { grid-template-columns: 1fr; }
    .zh_bento_main { grid-column: auto; }
    .zh_bento_main .zh_bento_thumb { height: 240px; }
    .zh_bento_overlay h3 { font-size: 18px; }
    .zh_bento_small .zh_bento_thumb { height: 160px; }

    .zh_process_track { grid-template-columns: 1fr; gap: 14px; }
    .zh_process_step { padding: 24px 18px 18px; }
    .zh_process_icon { width: 56px; height: 56px; font-size: 22px; }

    .zh_craft_card { padding: 28px 22px 22px; }
    .zh_craft_icon { width: 64px; height: 64px; font-size: 26px; }

    .zh_about_image_card { padding: 10px 14px; left: 12px; bottom: -16px; }
    .zh_about_image_card_icon { width: 36px; height: 36px; font-size: 15px; }
    .zh_about_image_card strong { font-size: 13px; }

    .zh_cta_title { font-size: 24px; }
    .zh_cta_buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .zh_cta_btn_white, .zh_cta_btn_outline { width: 100%; padding: 12px 22px; }
}
