/*!
 * HOOWOON CUSTOMS — Main Stylesheet
 *
 * 设计系统沿用 cbp.gov 的"政府权威感":
 *   - 顶部 utility 栏 (白底细条)
 *   - 主导航 (深蓝底白字)
 *   - Hero: 深色背景 + 金色高亮 + 红色 CTA
 *   - 多色徽章代表合规监管方
 *   - 数据条用大字 + 反色
 *   - 多列页脚
 *
 * 中文文案渲染额外优化:
 *   - 中文字体回退 (PingFang SC, Microsoft YaHei)
 *   - 中文字间距 / 行号
 *   - 标点对开
 *
 * Color tokens (CBP-inspired):
 *   --c-primary:   #002868   CBP Navy
 *   --c-primary-d: #001a4d   deep navy
 *   --c-accent:    #bf0a30   red seal
 *   --c-gold:      #c9a227   trust badge gold
 *   --c-bg:        #ffffff
 *   --c-bg-alt:    #f5f7fa
 *   --c-text:      #1a1a1a
 *   --c-text-m:    #555
 *   --c-border:    #d8dde3
 */

/* ====================================================== */
/* DESIGN TOKENS                                            */
/* ====================================================== */
:root {
    --c-primary: #002868;
    --c-primary-dark: #001a4d;
    --c-primary-light: #1a4d8f;
    --c-accent: #bf0a30;
    --c-accent-dark: #8b0420;
    --c-gold: #c9a227;
    --c-gold-dark: #a47d0f;
    --c-bg: #ffffff;
    --c-bg-alt: #f5f7fa;
    --c-bg-alt-2: #eef1f5;
    --c-text: #1a1a1a;
    --c-text-muted: #555;
    --c-text-dim: #777;
    --c-border: #d8dde3;
    --c-border-strong: #b9c2cd;

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
        "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    --font-serif: "Georgia", "Source Han Serif SC", "Noto Serif CJK SC", serif;
    --font-mono: "SFMono-Regular", "Menlo", "Consolas", monospace;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);

    --radius: 4px;
    --radius-md: 6px;
    --radius-lg: 12px;

    --container-max: 1200px;
    --header-height: 88px;
    --utility-height: 38px;
}

/* ====================================================== */
/* RESET                                                   */
/* ====================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--c-accent); }

ul, ol { padding-left: 1.4em; margin: 1em 0; }
li { margin: 0.25em 0; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    line-height: 1.25;
    font-weight: 700;
    color: var(--c-text);
}
h1 { font-size: 2.4rem; letter-spacing: -0.01em; }
h2 { font-size: 1.85rem; letter-spacing: -0.005em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

button { cursor: pointer; font-family: inherit; }
input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.6em 0.8em;
    border: 1px solid var(--c-border-strong);
    border-radius: var(--radius);
    background: #fff;
    color: var(--c-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(0, 40, 104, 0.15);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.hw-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--c-primary);
    color: #fff;
    padding: 0.5em 1em;
    z-index: 999;
    font-weight: 600;
}
.hw-skip-link:focus { top: 0; }

/* ====================================================== */
/* 双语显隐 — 默认隐藏英文                                  */
/* ====================================================== */
html[lang="zh"] .lang-en { display: none !important; }
html[lang="en"] .lang-zh { display: none !important; }
html:not([lang="zh"]):not([lang="en"]) .lang-en { display: none !important; }
/* 保留 .lang-zh/.lang-en 作为内联可见元素时(例如 footer 内中英文并列),用户可在子作用域启用 */

/* ====================================================== */
/* LAYOUT PRIMITIVES                                       */
/* ====================================================== */
.hw-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.hw-section {
    padding: 80px 0;
}
.hw-section--alt {
    background: var(--c-bg-alt);
}
.hw-section__header {
    max-width: 760px;
    margin: 0 0 48px;
}
.hw-section__header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.hw-section__header--sm { margin-bottom: 32px; }
.hw-section__header--invert { color: #fff; }
.hw-section__header--invert .hw-section__title { color: #fff; }

.hw-section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 12px;
}
.hw-section__title {
    margin: 0 0 12px;
    color: var(--c-primary);
}
.hw-section__lead {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin: 0;
}

.hw-page-hero {
    background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
    color: #fff;
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.hw-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hw-page-hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 12px;
}
.hw-page-hero__title {
    font-size: 2.6rem;
    color: #fff;
    margin: 0 0 16px;
}
.hw-page-hero__lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0;
}

/* ====================================================== */
/* CTA BUTTONS                                              */
/* ====================================================== */
.hw-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}
.hw-cta--lg { padding: 16px 28px; font-size: 1rem; }
.hw-cta--primary {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
}
.hw-cta--primary:hover {
    background: var(--c-accent-dark);
    border-color: var(--c-accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.hw-cta--ghost {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.hw-cta--ghost:hover {
    background: var(--c-primary);
    color: #fff;
}

/* 顶部 cta 浅色变体 — 在浅色页头中 */
.hw-header__cta {
    background: var(--c-accent);
    color: #fff;
    border-color: var(--c-accent);
    padding: 10px 18px;
    font-size: 0.9rem;
}
.hw-header__cta:hover {
    background: var(--c-accent-dark);
    color: #fff;
}

/* ====================================================== */
/* OFFICIAL SITE BAR (顶部小条 — 参考稿)                     */
/* ====================================================== */
.hw-official {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    position: relative;
    z-index: 110;
}
.hw-official__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.hw-official__left {
    font-weight: 600;
    letter-spacing: 0.01em;
}
.hw-official__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.hw-official__pill {
    color: #fff;
}
.hw-official__sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
}

/* 顶部小条:语言切换(沿用 pill 风格) */
.hw-lang-top {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.04em;
    transition: opacity 0.2s ease;
}
.hw-lang-top:hover {
    opacity: 0.85;
}
.hw-lang-top__divider {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 1px;
    font-weight: 400;
}
.hw-lang-top__opt {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    padding: 0 2px;
}
.hw-lang-top__opt--active {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
}

/* 兼容旧类名 — 不再使用 */
.hw-utility,
.hw-utility__inner,
.hw-utility__left,
.hw-utility__right,
.hw-utility__badge,
.hw-utility__sep,
.hw-utility__phone,
.hw-utility__email { display: none; }

.hw-icon { display: inline-block; vertical-align: middle; }

/* ====================================================== */
/* HEADER + NAV (白底,参考稿)                              */
/* ====================================================== */
.hw-header {
    background: #ffffff;
    color: var(--c-text);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--c-border);
}
/* WordPress admin bar 兼容 — 登录态登录显示在顶部时,把 sticky 头部下移 32px */
body.admin-bar .hw-header { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .hw-header { top: 46px; }
}
.hw-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 24px;
    min-height: 76px;
}
.hw-header__logo {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--c-primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.hw-header__logo:hover { color: var(--c-primary); }
.hw-header__logo-mark { display: inline-flex; }
.hw-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.hw-header__logo-text strong {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--c-primary);
    line-height: 1.1;
}
.hw-header__logo-text small {
    font-size: 0.7rem;
    color: var(--c-text-muted);
    font-weight: 600;
    letter-spacing: 0.14em;
    margin-top: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hw-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.hw-nav__toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--c-border-strong);
    border-radius: var(--radius);
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
}
.hw-nav__toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 1px;
}

.hw-nav__list-wrap {
    display: flex;
    align-items: center;
}
.hw-nav__list {
    display: flex;
    gap: 2px;
    margin: 0; padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}
.hw-nav__item {
    flex-shrink: 0;
}
.hw-nav__item > a {
    display: block;
    padding: 12px 14px;
    color: var(--c-text);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}
.hw-nav__item > a:hover {
    color: var(--c-primary);
}
.hw-nav__item--current > a {
    color: var(--c-primary);
}
.hw-nav__item--current > a::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px;
    bottom: 4px;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
}

.hw-header__cta {
    flex-shrink: 0;
    margin-left: 12px;
    background: var(--c-accent);
    color: #fff;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--radius);
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hw-header__cta:hover {
    background: var(--c-accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* ====================================================== */
/* 英文模式:logo tagline + nav 项更紧凑                   */
/* ====================================================== */
html[lang="en"] .hw-header__logo-text small {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
}
html[lang="en"] .hw-nav__item > a {
    padding: 12px 10px;
    font-size: 0.9rem;
}
html[lang="en"] .hw-nav__item--current > a::after {
    left: 10px; right: 10px;
}
html[lang="en"] .hw-header__cta {
    padding: 12px 16px;
    font-size: 0.9rem;
}

/* ====================================================== */
/* HERO (深蓝,左侧文字,右侧气泡,参考稿)                     */
/* ====================================================== */
.hw-hero {
    position: relative;
    background:
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
        linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: #fff;
    padding: 90px 0 110px;
    overflow: hidden;
}
.hw-hero__bg {
    position: absolute; inset: 0; pointer-events: none;
}
.hw-hero__pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.6;
}
.hw-hero__glow {
    position: absolute;
    width: 600px; height: 600px;
    right: -200px; top: -200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    filter: blur(40px);
}
/* 参考稿右侧的浅色圆环装饰 */
.hw-hero__bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.hw-hero__bubble--1 {
    width: 320px; height: 320px;
    right: 10%; top: 30%;
}
.hw-hero__bubble--2 {
    width: 220px; height: 220px;
    right: 20%; bottom: -60px;
}

.hw-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hw-hero__content {
    min-width: 0;
}

.hw-hero__eyebrow {
    display: inline-block;
    padding: 0;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hw-hero__title {
    font-size: 2.65rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 22px;
    color: #fff;
    letter-spacing: 0;
    max-width: 600px;
}
.hw-hero__subtitle {
    /* 自适应字号:中文整句单行可见(无截断) */
    font-size: clamp(0.55rem, 1.15vw, 0.98rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    white-space: nowrap;
    display: block;
    max-width: 100%;
}
.hw-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero 中"立即获取报价"按钮 — 红色填充 */
.hw-hero__cta .hw-cta--primary {
    background: var(--c-accent);
    color: #fff;
    border: 2px solid var(--c-accent);
    padding: 14px 26px;
}
.hw-hero__cta .hw-cta--primary:hover {
    background: var(--c-accent-dark);
    border-color: var(--c-accent-dark);
}

/* Hero 中"预约合规咨询"按钮 — 透明描边白字 */
.hw-hero__cta .hw-cta--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 14px 26px;
}
.hw-hero__cta .hw-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hw-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}
.hw-tag--ok { background: #d4f5d6; color: #166534; }

/* ====================================================== */
/* Responsive — 官方条 / 导航 / Hero                         */
/* ====================================================== */
/* 中等屏 (≤1100px):英文模式文本更长,提前压缩 nav+cta  */
@media (max-width: 1100px) {
    html[lang="en"] .hw-nav__item > a { padding: 12px 9px; font-size: 0.85rem; }
    html[lang="en"] .hw-nav__item--current > a::after { left: 9px; right: 9px; }
    html[lang="en"] .hw-header__cta { padding: 10px 14px; font-size: 0.85rem; }
    html[lang="en"] .hw-header__cta svg { display: none; }
}

@media (max-width: 900px) {
    /* 移动端:隐藏官方条左侧长文本,但保留右侧语言切换入口 */
    .hw-official { background: var(--c-primary-dark); }
    .hw-official__left { display: none; }
    .hw-official__inner {
        flex-direction: row;
        justify-content: flex-end;
        min-height: 36px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .hw-official__right {
        gap: 8px;
        font-size: 0.8rem;
    }
    .hw-official__pill { display: none; }
    .hw-official__sep { display: none; }

    /* 移动端头部:logo 占满剩余空间 + 右侧语言切换 + 汉堡 */
    .hw-header__inner {
        flex-wrap: nowrap;
        gap: 10px;
        padding-top: 12px;
        padding-bottom: 12px;
        align-items: center;
    }
    .hw-header__logo {
        flex: 1;
        min-width: 0;
        align-items: center;
    }
    .hw-header__logo-text strong { font-size: 1.25rem; }
    .hw-header__logo-text small { display: none; }

    /* 隐藏桌面端的 Get a Quote — 移动端折叠进汉堡菜单 */
    .hw-header__cta { display: none; }

    /* 汉堡按钮:醒目 */
    .hw-nav {
        order: 0;
        width: auto;
        flex: 0 0 auto;
        justify-content: flex-end;
    }
    .hw-nav__toggle {
        display: flex;
        width: 40px;
        height: 40px;
    }
    .hw-nav__list-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid var(--c-border);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
        padding: 8px 24px 20px;
        z-index: 99;
    }
    /* 菜单打开时的遮罩 */
    .hw-nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 90;
    }
    .hw-header { position: sticky; }
    .hw-nav.is-open .hw-nav__list-wrap { display: block; }
    .hw-nav.is-open .hw-nav__list { flex-direction: column; width: 100%; gap: 0; }
    .hw-nav__item > a {
        padding: 16px 0;
        border-bottom: 1px solid var(--c-border);
        color: #1a1a1a;
        font-weight: 700;
        font-size: 1rem;
    }
    .hw-nav__item:last-child > a { border-bottom: 0; }
    .hw-nav__item--current > a {
        color: var(--c-primary);
    }
    .hw-nav__item--current > a::after { display: none; }
    .hw-nav__item > a:hover { color: var(--c-primary); }

    .hw-hero { padding: 56px 0 64px; }
    .hw-hero__inner { grid-template-columns: 1fr; gap: 28px; }
    .hw-hero__title { font-size: 1.85rem; line-height: 1.3; }
    .hw-hero__subtitle {
        font-size: 0.98rem;
        white-space: normal;
    }
    .hw-hero__cta { flex-direction: row; flex-wrap: wrap; }
    .hw-hero__bubble--1 { width: 200px; height: 200px; right: -40px; top: 10%; }
    .hw-hero__bubble--2 { display: none; }
}

/* ====================================================== */
/* TRUST BADGES                                            */
/* ====================================================== */
.hw-trust {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
}
.hw-trust__grid {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hw-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border);
    transition: all 0.2s ease;
}
.hw-trust__item:hover {
    border-color: var(--c-gold);
    background: #fff;
    box-shadow: var(--shadow-md);
}
.hw-trust__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.hw-trust__text strong {
    color: var(--c-primary);
    font-size: 1rem;
    font-weight: 800;
}
.hw-trust__text span {
    color: var(--c-text-muted);
    font-size: 0.85rem;
}

/* ====================================================== */
/* SERVICES                                                */
/* ====================================================== */
.hw-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.hw-service-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    border-top: 4px solid var(--c-primary);
    transition: all 0.3s ease;
    position: relative;
}
.hw-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--c-accent);
}
.hw-service-card__num {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 2rem;
    font-weight: 900;
    color: var(--c-bg-alt-2);
    font-family: var(--font-mono);
    line-height: 1;
}
.hw-service-card__title {
    margin: 0 0 12px;
    color: var(--c-primary);
    font-size: 1.15rem;
    line-height: 1.3;
}
.hw-service-card__desc {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin: 0 0 18px;
}
.hw-service-card__link {
    font-weight: 700;
    color: var(--c-accent);
    font-size: 0.9rem;
}
.hw-service-card__link:hover { color: var(--c-accent-dark); }

/* ====================================================== */
/* WHY CHOOSE US                                           */
/* ====================================================== */
.hw-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.hw-why__item {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--c-gold);
    box-shadow: var(--shadow-sm);
}
.hw-why__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--c-primary);
    color: var(--c-gold);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 16px;
}
.hw-why__title {
    color: var(--c-primary);
    margin: 0 0 8px;
    font-size: 1.2rem;
}
.hw-why__desc {
    color: var(--c-text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ====================================================== */
/* STATS                                                    */
/* ====================================================== */
.hw-stats {
    background:
        radial-gradient(ellipse at top left, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hw-stats::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.hw-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.hw-stat {
    text-align: center;
    padding: 24px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.hw-stat:last-child { border-right: 0; }
.hw-stat__value {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-mono);
    letter-spacing: -0.02em;
}
.hw-stat__label {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ====================================================== */
/* TESTIMONIALS                                            */
/* ====================================================== */
.hw-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hw-testimonial {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    margin: 0;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.hw-testimonial::before {
    content: "“";
    position: absolute;
    top: -10px; left: 18px;
    font-size: 5rem;
    line-height: 1;
    color: var(--c-gold);
    font-family: Georgia, serif;
}
.hw-testimonial__quote {
    margin: 16px 0 24px;
    font-size: 0.98rem;
    color: var(--c-text);
    line-height: 1.65;
}
.hw-testimonial__author {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    border-top: 1px solid var(--c-border);
    padding-top: 14px;
}
.hw-testimonial__author strong {
    display: block;
    color: var(--c-primary);
}

/* ====================================================== */
/* RESOURCES PREVIEW                                       */
/* ====================================================== */
.hw-resources-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hw-resource-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.hw-resource-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-md);
    color: var(--c-text);
    transform: translateY(-3px);
}
.hw-resource-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.hw-resource-card__title {
    color: var(--c-primary);
    margin: 0 0 8px;
    font-size: 1.15rem;
}
.hw-resource-card__desc {
    color: var(--c-text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ====================================================== */
/* CTA STRIP                                                */
/* ====================================================== */
.hw-cta-strip {
    background: linear-gradient(90deg, var(--c-accent-dark), var(--c-accent));
    color: #fff;
    padding: 48px 0;
}
.hw-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.hw-cta-strip__text h2 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 1.8rem;
}
.hw-cta-strip__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}
.hw-cta-strip .hw-cta--primary {
    background: #fff;
    color: var(--c-accent);
    border-color: #fff;
}
.hw-cta-strip .hw-cta--primary:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

/* ====================================================== */
/* ABOUT — credentials                                     */
/* ====================================================== */
.hw-about__intro { max-width: 880px; margin: 0 auto; }
.hw-about__h2 {
    color: var(--c-primary);
    margin-bottom: 16px;
    border-left: 4px solid var(--c-gold);
    padding-left: 16px;
}
.hw-about__body {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.hw-about__body p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 16px;
}
.hw-about__body p:last-child {
    margin-bottom: 0;
}

.hw-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.hw-credential {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-primary);
}
.hw-credential__num {
    font-family: var(--font-mono);
    color: var(--c-gold);
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 8px;
}
.hw-credential__title {
    color: var(--c-primary);
    margin: 0 0 8px;
}
.hw-credential p { color: var(--c-text-muted); margin: 0; }

/* ====================================================== */
/* SERVICES — detail                                       */
/* ====================================================== */
.hw-services-detail {
    display: grid;
    gap: 24px;
}
.hw-service-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    scroll-margin-top: calc(var(--utility-height) + var(--header-height) + 24px);
}
.hw-service-detail__num {
    font-family: var(--font-mono);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
}
.hw-service-detail__title {
    color: var(--c-primary);
    margin: 0 0 12px;
}
.hw-service-detail__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.hw-service-detail__list li {
    padding: 8px 0 8px 22px;
    position: relative;
    border-bottom: 1px dashed var(--c-border);
    color: var(--c-text);
}
.hw-service-detail__list li::before {
    content: "▸";
    color: var(--c-accent);
    position: absolute;
    left: 0;
    top: 8px;
}

/* ====================================================== */
/* SOLUTIONS                                                */
/* ====================================================== */
.hw-solution {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid var(--c-border);
    align-items: center;
}
.hw-solution:last-child { border-bottom: 0; }
.hw-solution--reverse {
    grid-template-columns: 1fr 220px;
}
.hw-solution--reverse .hw-solution__visual { order: 2; }
.hw-solution__visual {
    background: var(--c-bg-alt);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hw-solution__eyebrow {
    display: inline-block;
    color: var(--c-accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.hw-solution__title {
    color: var(--c-primary);
    margin: 0 0 12px;
}
.hw-solution__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.hw-solution__list li {
    color: var(--c-text);
    font-size: 0.95rem;
}

/* ====================================================== */
/* RESOURCES — tools grid                                  */
/* ====================================================== */
.hw-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}
.hw-tool {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    scroll-margin-top: calc(var(--utility-height) + var(--header-height) + 24px);
}
.hw-tool__num {
    font-family: var(--font-mono);
    color: var(--c-gold);
    font-weight: 800;
    font-size: 0.9rem;
}
.hw-tool__title {
    color: var(--c-primary);
    margin: 6px 0 12px;
}
.hw-tool__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin: 16px 0;
}
.hw-tool__form--cols {
    grid-template-columns: 1fr 1fr auto;
}
.hw-tool__note {
    font-size: 0.85rem;
    color: var(--c-text-dim);
    margin: 8px 0 0;
}
.hw-tool__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}
.hw-tool__list li {
    border-bottom: 1px solid var(--c-border);
}
.hw-tool__list a {
    display: block;
    padding: 12px 0;
    color: var(--c-primary);
    font-weight: 600;
    transition: color 0.2s;
}
.hw-tool__list a:hover { color: var(--c-accent); }

.hw-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hw-blog-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}
.hw-blog-card__date {
    display: inline-block;
    color: var(--c-text-dim);
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-family: var(--font-mono);
}
.hw-blog-card__title {
    color: var(--c-primary);
    margin: 0 0 12px;
    font-size: 1.1rem;
}
.hw-blog-card__excerpt {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin: 0 0 16px;
}
.hw-blog-card__more {
    color: var(--c-accent);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ====================================================== */
/* CONTACT                                                  */
/* ====================================================== */
.hw-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    max-width: 880px;
    margin: 0 auto;
}
.hw-contact__h2 {
    color: var(--c-primary);
    margin-bottom: 8px;
}
.hw-contact__lead {
    color: var(--c-text-muted);
    margin: 0 0 28px;
}
.hw-form {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}
.hw-form__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.hw-form__label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--c-text-muted);
    font-weight: 600;
    min-width: 0;
    width: 100%;
}
.hw-form__label > input,
.hw-form__label > select,
.hw-form__label > textarea {
    width: 100%;
    box-sizing: border-box;
}
.hw-form__label--full {
    grid-column: 1 / -1;
}
.hw-form__required {
    display: none;
}
.hw-form__hint {
    display: block;
    min-height: 1.2em;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-weight: 500;
    line-height: 1.2;
}
.hw-form__label.is-error .hw-form__hint {
    color: var(--c-accent);
}
.hw-form__label.is-error > input,
.hw-form__label.is-error > select,
.hw-form__label.is-error > textarea {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.hw-contact__side > * + * { margin-top: 16px; }
.hw-emergency {
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
    color: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.hw-emergency__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.hw-emergency__title {
    color: #fff;
    margin: 0 0 8px;
    font-size: 1.15rem;
}
.hw-emergency__phone {
    margin: 0 0 12px;
    font-size: 1.6rem;
    font-weight: 800;
}
.hw-emergency__phone a { color: #fff; }
.hw-emergency p { margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; }

.hw-contact__offices-title {
    color: var(--c-primary);
    margin: 24px 0 12px;
    font-size: 1.1rem;
}
.hw-office-card {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}
.hw-office-card strong {
    display: block;
    color: var(--c-primary);
    margin-bottom: 6px;
}
.hw-office-card address {
    font-style: normal;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.hw-office-card address a { color: var(--c-primary); font-weight: 600; }

/* ====================================================== */
/* FOOTER                                                   */
/* ====================================================== */
.hw-footer {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
}
.hw-footer__main {
    padding: 60px 0 40px;
    border-top: 4px solid var(--c-gold);
}
.hw-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 36px;
}
.hw-footer__col h3 {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.hw-footer__col p, .hw-footer__col ul {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}
.hw-footer__list {
    list-style: none;
    margin: 0; padding: 0;
}
.hw-footer__list li {
    margin: 0;
}
.hw-footer__list a {
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    display: inline-block;
    font-size: 0.9rem;
}
.hw-footer__list a:hover {
    color: var(--c-gold);
}

.hw-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 16px;
}
.hw-footer__logo strong { font-size: 1.05rem; }
.hw-footer__about {
    margin: 0 0 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}
.hw-footer__licenses {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.hw-footer__license {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--c-gold);
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
}

.hw-footer__office {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hw-footer__office:last-child { border-bottom: 0; padding-bottom: 0; }
.hw-footer__office strong {
    color: var(--c-gold);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 4px;
}
.hw-footer__office address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}
.hw-footer__office address a {
    color: rgba(255, 255, 255, 0.85);
}

.hw-footer__bar {
    background: #00102e;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hw-footer__bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.hw-footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}
.hw-footer__bar-links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 24px;
}
.hw-footer__bar-links a {
    color: rgba(255, 255, 255, 0.7);
}
.hw-footer__bar-links a:hover { color: var(--c-gold); }

/* ====================================================== */
/* 404                                                       */
/* ====================================================== */
.hw-404 {
    text-align: center;
    padding: 60px 0;
}
.hw-404__code {
    font-family: var(--font-mono);
    font-size: 8rem;
    font-weight: 900;
    color: var(--c-primary);
    line-height: 1;
    display: block;
    background: linear-gradient(135deg, var(--c-primary), var(--c-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hw-404__title {
    color: var(--c-primary);
    margin: 12px 0;
}

/* ====================================================== */
/* POSTS (fallback)                                         */
/* ====================================================== */
.hw-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hw-post-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}
.hw-post-card__title { margin: 0 0 12px; font-size: 1.1rem; }
.hw-post-card__title a { color: var(--c-primary); }
.hw-post-card__excerpt { color: var(--c-text-muted); margin-bottom: 12px; }
.hw-post-card__more { color: var(--c-accent); font-weight: 700; }
.hw-empty-state {
    text-align: center;
    padding: 60px 0;
    color: var(--c-text-muted);
}

.hw-content {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}
.hw-content p { margin-bottom: 1.1em; }
.hw-content a { color: var(--c-accent); text-decoration: underline; }
.hw-content h2 { color: var(--c-primary); margin-top: 1.5em; }
.hw-content h3 { color: var(--c-primary); margin-top: 1.2em; }

/* ====================================================== */
/* RESPONSIVE — tablet & mobile                             */
/* ====================================================== */
@media (max-width: 1024px) {
    :root {
        --header-height: 72px;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.55rem; }
    .hw-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hw-hero__title { font-size: 2.4rem; }
    .hw-hero__visual { max-width: 380px; }
    .hw-hero { padding: 60px 0 80px; }
    .hw-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .hw-services__grid { grid-template-columns: repeat(2, 1fr); }
    .hw-why__grid { grid-template-columns: 1fr; }
    .hw-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .hw-stat:nth-child(2) { border-right: 0; }
    .hw-testimonials__grid { grid-template-columns: 1fr; }
    .hw-resources-preview__grid { grid-template-columns: 1fr; }
    .hw-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .hw-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .hw-contact-grid { grid-template-columns: 1fr; }
    .hw-credentials { grid-template-columns: 1fr; }
    .hw-section { padding: 56px 0; }
    .hw-cta-strip__inner { flex-direction: column; text-align: center; }
    .hw-solution,
    .hw-solution--reverse { grid-template-columns: 1fr; gap: 20px; }
    .hw-solution--reverse .hw-solution__visual { order: 0; }
    .hw-service-detail { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 768px) {
    .hw-utility { display: none; } /* 极窄屏隐藏 utility 栏 */

    .hw-header__inner { gap: 12px; padding: 8px 24px; }
    .hw-header__logo-text small { display: none; }
    .hw-header__cta { display: none; }

    .hw-nav__toggle { display: flex; }
    .hw-nav__list-wrap {
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0;
        background: var(--c-primary-dark);
        padding: 16px 0;
        display: none;
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }
    .hw-nav__list-wrap.is-open { display: block; }
    .hw-nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .hw-nav__item { width: 100%; }
    .hw-nav__item > a {
        padding: 14px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .hw-page-hero__title { font-size: 2rem; }
    .hw-hero__title { font-size: 1.85rem; }
    .hw-hero__subtitle { font-size: 1rem; }
    .hw-hero__cta { flex-direction: column; align-items: stretch; }
    .hw-hero__cta .hw-cta { justify-content: center; }

    .hw-stats__grid { grid-template-columns: 1fr; }
    .hw-stat { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
    .hw-stat:last-child { border-bottom: 0; }
    .hw-stat__value { font-size: 2.5rem; }

    .hw-trust__grid { grid-template-columns: 1fr; }
    .hw-services__grid { grid-template-columns: 1fr; }
    .hw-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .hw-blog-grid { grid-template-columns: 1fr; }
    .hw-form__row { grid-template-columns: 1fr; }
    .hw-tool__form,
    .hw-tool__form--cols { grid-template-columns: 1fr; }

    .hw-page-hero { padding: 50px 0 36px; }
    .hw-section { padding: 40px 0; }
    .hw-stats { padding: 48px 0; }
    .hw-section__header { margin-bottom: 32px; }

    .hw-cta-strip__inner { text-align: left; }
}

/* ====================================================== */
/* Inquiry notice (success / error)                       */
/* ====================================================== */
.hw-inquiry__notice {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 4px solid;
}
#hw-inquiry {
    scroll-margin-top: calc(var(--utility-height, 38px) + 76px + 16px);
}
.hw-inquiry__notice--success {
    background: #e8f7ec;
    color: #166534;
    border-left-color: #16a34a;
}
.hw-inquiry__notice--error {
    background: #fdecec;
    color: #991b1b;
    border-left-color: #dc2626;
}
/* ====================================================== */
@media print {
    .hw-utility, .hw-header, .hw-footer, .hw-cta-strip, .hw-hero__visual { display: none; }
    body { color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
}

/* ====================================================== */
/* 中文排版微调                                              */
/* ====================================================== */
html[lang="zh"] body {
    line-height: 1.85;
}
html[lang="zh"] p { text-justify: inter-ideograph; }
html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3 { font-weight: 700; }