/*
Theme Name: 大策环保专业版
Theme URI: https://dc.binguo.wang
Description: 厦门大策环保设备有限公司官方网站主题 - 专业工业风设计版(深水蓝 + 8 屏首页架构 + 产品键值对参数)
Version: 3.0.0
Author: Dace Industrial Design
Text Domain: dace-pro
*/

/* =============================================================
   1. 设计系统 / Design Tokens — 工业深水蓝
   ============================================================= */
:root {
    /* 主色 — 深水蓝(主品牌) */
    --brand-50:  #f0f9ff;
    --brand-100: #e0f2fe;
    --brand-200: #bae6fd;
    --brand-300: #7dd3fc;
    --brand-400: #38bdf8;
    --brand-500: #0ea5e9;
    --brand-600: #0284c7;
    --brand-700: #0369a1;
    --brand-800: #075985;
    --brand-900: #0c4a6e;

    /* 中性色 — 工程感灰 */
    --ink-0:   #ffffff;
    --ink-50:  #f8fafc;
    --ink-100: #f1f5f9;
    --ink-200: #e2e8f0;
    --ink-300: #cbd5e1;
    --ink-400: #94a3b8;
    --ink-500: #64748b;
    --ink-600: #475569;
    --ink-700: #334155;
    --ink-800: #1e293b;
    --ink-900: #0f172a;
    --ink-950: #020617;

    /* 语义色 */
    --accent:   #0284c7;          /* CTA 主色 */
    --accent-dark: #075985;
    --warning:  #f59e0b;          /* 警告 */
    --success:  #10b981;          /* 成功 */
    --danger:   #dc2626;          /* 危险 */

    /* 工业元素 */
    --steel:    #475569;          /* 钢蓝 */
    --metal:    #64748b;          /* 金属灰 */

    /* 背景 */
    --bg-page:  #f8fafc;
    --bg-card:  #ffffff;
    --bg-dark:  #0f172a;          /* Hero 深色金属感 */

    /* 边框 */
    --border:   #e2e8f0;
    --border-strong: #cbd5e1;

    /* 排版 */
    --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC",
                 "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "JetBrains Mono", "SF Mono", Consolas, Monaco, monospace;
    --font-display: "PingFang SC", "Microsoft YaHei", sans-serif;

    /* 字号 */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;

    /* 间距 — 8dp 网格 */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* 圆角 */
    --radius-sm:  4px;
    --radius:     8px;
    --radius-md:  12px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    /* 阴影 */
    --shadow-sm:  0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow:     0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md:  0 4px 6px rgba(15, 23, 42, 0.07), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg:  0 10px 25px rgba(15, 23, 42, 0.10), 0 4px 10px rgba(15, 23, 42, 0.04);
    --shadow-xl:  0 20px 40px rgba(15, 23, 42, 0.15);
    --shadow-metal: 0 0 0 1px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(2, 132, 199, 0.08);

    /* 容器 */
    --container-sm: 640px;
    --container:    1280px;
    --container-lg: 1440px;

    /* 过渡 */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 150ms;
    --t-base: 250ms;
    --t-slow: 400ms;
}

/* =============================================================
   2. 重置 / Reset
   ============================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--ink-800);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--brand-700);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease);
}
a:hover {
    color: var(--brand-900);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink-900);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin: 0 0 var(--sp-4); }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* =============================================================
   3. 通用工具类
   ============================================================= */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.container-wide {
    max-width: var(--container-lg);
}

.section {
    padding: var(--sp-20) 0;
}

.section-tight {
    padding: var(--sp-12) 0;
}

.eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-700);
    margin-bottom: var(--sp-3);
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--brand-600);
    vertical-align: middle;
    margin-right: var(--sp-3);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: var(--sp-3);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--ink-600);
    max-width: 720px;
    margin: 0 0 var(--sp-12);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =============================================================
   4. 按钮
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.875rem 1.75rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--t-base) var(--ease);
    text-decoration: none;
    min-height: 48px;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.2;
}

.btn-primary {
    background: var(--brand-600);
    color: var(--ink-0);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background: var(--brand-700);
    color: var(--ink-0);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--ink-900);
    border-color: var(--ink-900);
}
.btn-secondary:hover {
    background: var(--ink-900);
    color: var(--ink-0);
}

.btn-outline {
    background: transparent;
    color: var(--brand-700);
    border-color: var(--brand-700);
}
.btn-outline:hover {
    background: var(--brand-700);
    color: var(--ink-0);
}

.btn-white {
    background: var(--ink-0);
    color: var(--brand-900);
}
.btn-white:hover {
    background: var(--ink-100);
    color: var(--brand-900);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
    min-height: 36px;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: var(--text-lg);
    min-height: 56px;
}

.btn .arrow {
    transition: transform var(--t-base) var(--ease);
}
.btn:hover .arrow {
    transform: translateX(4px);
}

/* =============================================================
   5. Header / 顶部导航
   ============================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t-base) var(--ease);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-4) 0;
    gap: var(--sp-8);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
    color: var(--ink-900);
}

.site-brand img {
    height: 44px;
    width: auto;
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-brand-name {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--ink-900);
}

.site-brand-sub {
    font-size: var(--text-xs);
    color: var(--ink-500);
    letter-spacing: 0.05em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: var(--ink-700);
    font-weight: 500;
    font-size: var(--text-base);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius);
    transition: all var(--t-fast) var(--ease);
    position: relative;
}

.main-nav a:hover {
    color: var(--brand-700);
    background: var(--brand-50);
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: var(--brand-700);
    font-weight: 600;
}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--brand-600);
    border-radius: 1px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--ink-900);
    font-weight: 600;
    font-size: var(--text-sm);
}
.header-phone svg {
    width: 18px;
    height: 18px;
    color: var(--brand-600);
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--ink-900);
}

.menu-toggle:hover {
    background: var(--ink-100);
}

@media (max-width: 1024px) {
    .main-nav,
    .header-phone {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

/* =============================================================
   5b. PC 主菜单 (ul.main-menu 横向) — 修竖排 bug
   ============================================================= */
.main-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: var(--ink-700);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    border-radius: 8px;
    text-decoration: none;
    transition: all .18s ease;
    white-space: nowrap;
}

.main-menu > li > a:hover {
    color: var(--brand-700);
    background: var(--brand-50);
}

.main-menu > .current-menu-item > a,
.main-menu > .current_page_item > a {
    color: var(--brand-700);
    font-weight: 600;
    background: var(--brand-50);
}

/* 二级菜单 */
.main-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 200px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    display: none;
}
.main-menu li { position: relative; }
.main-menu li:hover > .sub-menu { display: block; }
.main-menu .sub-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--ink-700);
    font-size: 14px;
    text-decoration: none;
}
.main-menu .sub-menu a:hover {
    color: var(--brand-700);
    background: var(--brand-50);
}

/* =============================================================
   5c. 移动端抽屉菜单 (PC 完全不显示)
   ============================================================= */
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
    overflow: hidden;
}
.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mobile-nav-head .site-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-900);
}
.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--ink-700);
    border-radius: 8px;
}
.mobile-nav-close:hover { background: var(--ink-100); }

.mobile-nav-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu li:last-child { border-bottom: 0; }
.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--ink-900);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.mobile-menu a:hover { color: var(--brand-700); background: var(--brand-50); }
.mobile-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 8px 0;
    background: var(--ink-50);
}
.mobile-menu .sub-menu a {
    padding-left: 36px;
    font-size: 14px;
    font-weight: 400;
}

/* PC 完全不显示移动端 drawer 和 toggle */
@media (min-width: 1025px) {
    .menu-toggle,
    .mobile-nav-drawer,
    .mobile-nav-backdrop {
        display: none !important;
    }
}

/* =============================================================
   6. Hero — 首页头屏
   ============================================================= */
.hero {
    position: relative;
    min-height: 640px;
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--brand-900) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--ink-0);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2, 132, 199, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.6;
}

.hero::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(2, 132, 199, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-16);
    align-items: center;
    padding: var(--sp-20) 0;
}

.hero-content .eyebrow {
    color: var(--brand-300);
}
.hero-content .eyebrow::before {
    background: var(--brand-400);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink-0);
    margin-bottom: var(--sp-6);
    letter-spacing: -0.02em;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--brand-300) 0%, var(--brand-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--sp-8);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-10);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    padding-top: var(--sp-8);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: left;
}

.hero-stat-num {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--brand-300);
    line-height: 1.1;
    margin-bottom: var(--sp-1);
    font-family: var(--font-display);
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero 右侧轮播 */
.hero-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-800);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.08);
    aspect-ratio: 4/3;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--t-slow) var(--ease);
}

.hero-carousel-slide.is-active {
    opacity: 1;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-6);
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    color: var(--ink-0);
}

.hero-carousel-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--brand-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
}

.hero-carousel-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-0);
    margin-bottom: var(--sp-1);
}

.hero-carousel-sub {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.75);
}

.hero-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--sp-3);
    pointer-events: none;
}

.hero-carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--ink-0);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all var(--t-base) var(--ease);
}

.hero-carousel-btn:hover {
    background: var(--brand-600);
}

.hero-carousel-indicators {
    position: absolute;
    bottom: var(--sp-3);
    right: var(--sp-3);
    display: flex;
    gap: var(--sp-2);
    z-index: 2;
}

.hero-carousel-dot {
    width: 24px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease);
    cursor: pointer;
}

.hero-carousel-dot.is-active {
    background: var(--brand-400);
    width: 36px;
}

.hero-carousel-count {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    padding: var(--sp-1) var(--sp-3);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    color: var(--ink-0);
    font-weight: 600;
    font-family: var(--font-mono);
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
        padding: var(--sp-12) 0;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-carousel {
        aspect-ratio: 16/10;
    }
}

/* =============================================================
   7. Trust strip / 信任条
   ============================================================= */
.trust-strip {
    background: var(--ink-0);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-6) 0;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-6);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--ink-700);
    font-size: var(--text-sm);
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--brand-600);
    flex-shrink: 0;
}

/* =============================================================
   8. 通用 section
   ============================================================= */
.section-header {
    margin-bottom: var(--sp-12);
    text-align: left;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-6);
    margin-bottom: var(--sp-12);
    flex-wrap: wrap;
}

.section-header-row .left {
    flex: 1;
}

.section-header-row .right a {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--brand-700);
    font-weight: 600;
    font-size: var(--text-base);
    transition: gap var(--t-base) var(--ease);
}

.section-header-row .right a:hover {
    gap: var(--sp-3);
}

/* =============================================================
   9. 核心优势 / Features
   ============================================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--t-base) var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow) var(--ease);
}

.feature-card:hover {
    border-color: var(--brand-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
    color: var(--brand-700);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--sp-3);
}

.feature-desc {
    font-size: var(--text-base);
    color: var(--ink-600);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   10. 产品卡片
   ============================================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}

.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1280px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid--5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .product-grid,
    .product-grid--3,
    .product-grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .product-grid,
    .product-grid--3,
    .product-grid--5 {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--t-base) var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    border-color: var(--brand-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 220px;
    background: linear-gradient(135deg, var(--ink-50), var(--ink-100));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-badge {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    padding: 4px 10px;
    background: var(--brand-600);
    color: var(--ink-0);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-card-body {
    padding: var(--sp-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink-900);
    line-height: 1.4;
    margin-bottom: var(--sp-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    min-height: 2.8em;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
}
.product-card-title a:hover {
    color: var(--brand-700);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--sp-3);
    border-top: 1px solid var(--border);
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--brand-700);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: gap var(--t-base) var(--ease);
}

.product-card-link:hover {
    gap: 8px;
}

/* 产品分类(应用行业)组 */
.product-group {
    margin-bottom: var(--sp-12);
}

.product-group-header {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-3);
    border-bottom: 2px solid var(--ink-200);
}

.product-group-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-700);
    flex-shrink: 0;
}

.product-group-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin: 0;
}

.product-group-count {
    margin-left: auto;
    color: var(--ink-500);
    font-size: var(--text-sm);
}

/* =============================================================
   11. 应用行业网格
   ============================================================= */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.industry-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--ink-900);
}

.industry-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}

.industry-card:hover .industry-card-bg {
    transform: scale(1.06);
}

.industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--sp-6);
    color: var(--ink-0);
}

.industry-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-3);
    color: var(--brand-300);
}

.industry-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-0);
    margin-bottom: var(--sp-2);
}

.industry-card-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* =============================================================
   12. 工艺/产能条
   ============================================================= */
.capacity-bar {
    background: linear-gradient(135deg, var(--ink-900), var(--brand-900));
    color: var(--ink-0);
    padding: var(--sp-16) 0;
    position: relative;
    overflow: hidden;
}

.capacity-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(2, 132, 199, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.capacity-bar-inner {
    position: relative;
    z-index: 2;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-8);
    margin-top: var(--sp-10);
}

@media (max-width: 1024px) {
    .capacity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.capacity-item {
    text-align: center;
    padding: var(--sp-6);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.capacity-num {
    display: block;
    font-size: var(--text-5xl);
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-300), var(--brand-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--sp-3);
}

.capacity-suffix {
    font-size: var(--text-2xl);
    color: var(--brand-300);
    font-weight: 700;
}

.capacity-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* =============================================================
   13. 文章卡片
   ============================================================= */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.article-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1280px) {
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid--5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .article-grid,
    .article-grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .article-grid,
    .article-grid--5 {
        grid-template-columns: 1fr;
    }
}

.article-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--t-base) var(--ease);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    border-color: var(--brand-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 180px;
    background: linear-gradient(135deg, var(--ink-50), var(--ink-100));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-date {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    padding: 4px var(--sp-2);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--ink-0);
    font-size: var(--text-xs);
    font-weight: 600;
    font-family: var(--font-mono);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.article-card-body {
    padding: var(--sp-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--brand-700);
    background: var(--brand-50);
    padding: 4px var(--sp-2);
    border-radius: var(--radius-sm);
    margin-bottom: var(--sp-3);
    align-self: flex-start;
}

.article-card-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink-900);
    line-height: 1.4;
    margin-bottom: var(--sp-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--brand-700);
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--sp-3);
    border-top: 1px solid var(--border);
    color: var(--ink-500);
    font-size: var(--text-xs);
}

/* =============================================================
   14. CTA section
   ============================================================= */
.cta-section {
    background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-900) 100%);
    color: var(--ink-0);
    padding: var(--sp-16) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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: 30px 30px;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink-0);
    margin-bottom: var(--sp-4);
}

.cta-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--sp-8);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--ink-0);
    font-family: var(--font-display);
    margin-top: var(--sp-6);
}

.cta-phone svg {
    width: 24px;
    height: 24px;
    color: var(--brand-300);
}

/* =============================================================
   15. Footer
   ============================================================= */
.site-footer {
    background: var(--ink-950);
    color: var(--ink-300);
    padding: var(--sp-20) 0 var(--sp-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-12);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand-name {
    color: var(--ink-0);
    font-size: var(--text-xl);
    font-weight: 800;
    margin-bottom: var(--sp-2);
}

.footer-brand-sub {
    color: var(--brand-400);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-5);
}

.footer-desc {
    color: var(--ink-400);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--sp-5);
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 6px var(--sp-3);
    background: rgba(2, 132, 199, 0.1);
    border: 1px solid rgba(2, 132, 199, 0.3);
    color: var(--brand-300);
    border-radius: var(--radius);
    font-size: var(--text-xs);
    font-weight: 500;
}

.footer-cert svg {
    width: 14px;
    height: 14px;
}

.footer-title {
    color: var(--ink-0);
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--sp-5);
    position: relative;
    padding-bottom: var(--sp-3);
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--brand-500);
}

.footer-list li {
    margin-bottom: var(--sp-3);
}

.footer-list a {
    color: var(--ink-400);
    font-size: var(--text-sm);
    transition: color var(--t-fast) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.footer-list a::before {
    content: "›";
    color: var(--brand-500);
    font-weight: 700;
}

.footer-list a:hover {
    color: var(--brand-300);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
    color: var(--ink-400);
    font-size: var(--text-sm);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--brand-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: var(--sp-8);
    border-top: 1px solid var(--ink-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
    color: var(--ink-500);
    font-size: var(--text-sm);
}

.footer-bottom a {
    color: var(--ink-400);
}

.footer-bottom a:hover {
    color: var(--brand-300);
}

.footer-marketplace {
    display: flex;
    gap: var(--sp-4);
    margin-top: var(--sp-3);
}

.footer-marketplace a {
    color: var(--brand-300);
    font-size: var(--text-sm);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast) var(--ease);
}

.footer-marketplace a:hover {
    border-bottom-color: var(--brand-300);
}

/* =============================================================
   16. 产品筛选条
   ============================================================= */
.filter-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    margin-bottom: var(--sp-8);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    align-items: center;
}

.filter-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-700);
}

.filter-select {
    padding: var(--sp-2) var(--sp-3);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: var(--ink-0);
    font-family: inherit;
    font-size: var(--text-sm);
    color: var(--ink-800);
    cursor: pointer;
    min-width: 160px;
    transition: border-color var(--t-fast) var(--ease);
}

.filter-select:focus {
    outline: none;
    border-color: var(--brand-600);
    box-shadow: 0 0 0 3px var(--brand-100);
}

/* 侧栏分类 */
.sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-3);
    border-bottom: 2px solid var(--brand-600);
}

.sidebar-list li {
    margin-bottom: var(--sp-2);
}

.sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-2) var(--sp-3);
    color: var(--ink-700);
    font-size: var(--text-sm);
    border-radius: var(--radius);
    transition: all var(--t-fast) var(--ease);
}

.sidebar-list a:hover,
.sidebar-list .current-cat a {
    background: var(--brand-50);
    color: var(--brand-700);
    font-weight: 600;
}

.sidebar-list .count {
    color: var(--ink-400);
    font-size: var(--text-xs);
    font-family: var(--font-mono);
}

/* =============================================================
   17. 产品详情页
   ============================================================= */
.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-16);
}

@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-50);
    border: 1px solid var(--border);
    margin-bottom: var(--sp-3);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-2);
}

.product-gallery-thumb {
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--t-fast) var(--ease);
}

.product-gallery-thumb.is-active {
    border-color: var(--brand-600);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: var(--sp-4);
    line-height: 1.3;
}

.product-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--border);
    color: var(--ink-500);
    font-size: var(--text-sm);
}

.product-info-meta span {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.product-info-meta svg {
    width: 16px;
    height: 16px;
}

.product-info-desc {
    font-size: var(--text-base);
    color: var(--ink-700);
    line-height: 1.8;
    margin-bottom: var(--sp-8);
}

/* 键值对参数表 — 只显示填了的 */
.product-specs {
    margin: var(--sp-8) 0;
    padding: var(--sp-6);
    background: var(--ink-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.product-specs-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--sp-4);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.product-specs-title svg {
    width: 22px;
    height: 22px;
    color: var(--brand-600);
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table tr {
    border-bottom: 1px solid var(--border);
}

.product-specs-table tr:last-child {
    border-bottom: none;
}

.product-specs-table td {
    padding: var(--sp-3) 0;
    vertical-align: top;
}

.product-specs-table td:first-child {
    color: var(--ink-500);
    font-size: var(--text-sm);
    font-weight: 500;
    width: 40%;
}

.product-specs-table td:last-child {
    color: var(--ink-900);
    font-weight: 600;
}

.product-cta-group {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-top: var(--sp-6);
}

/* =============================================================
   18. 文章详情
   ============================================================= */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-header {
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--border);
}

.article-detail-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: var(--sp-5);
    color: var(--ink-900);
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-5);
    color: var(--ink-500);
    font-size: var(--text-sm);
}

.article-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.article-detail-content {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--ink-800);
}

.article-detail-content h2,
.article-detail-content h3 {
    margin-top: var(--sp-8);
    margin-bottom: var(--sp-4);
    color: var(--ink-900);
}

.article-detail-content p {
    margin-bottom: var(--sp-5);
}

.article-detail-content img {
    border-radius: var(--radius-md);
    margin: var(--sp-6) 0;
}

.article-cta {
    margin-top: var(--sp-12);
    padding: var(--sp-8);
    background: var(--brand-50);
    border: 1px solid var(--brand-200);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--sp-3);
}

.article-cta-desc {
    color: var(--ink-600);
    margin-bottom: var(--sp-5);
}

/* =============================================================
   19. 关于我们 / About
   ============================================================= */
.about-hero {
    background: linear-gradient(135deg, var(--ink-900), var(--brand-900));
    color: var(--ink-0);
    padding: var(--sp-20) 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2, 132, 199, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero .eyebrow {
    color: var(--brand-300);
}
.about-hero .eyebrow::before {
    background: var(--brand-400);
}

.about-hero h1 {
    color: var(--ink-0);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--sp-4);
}

.about-hero .subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto;
}

/* 关于我们:数据 */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    margin: var(--sp-12) 0;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    text-align: center;
    transition: all var(--t-base) var(--ease);
}

.about-stat-card:hover {
    border-color: var(--brand-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--sp-3);
    background: var(--brand-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-700);
}

.about-stat-icon svg {
    width: 24px;
    height: 24px;
}

.about-stat-num {
    font-size: var(--text-4xl);
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--sp-2);
}

.about-stat-suffix {
    font-size: var(--text-xl);
    color: var(--brand-700);
    font-weight: 700;
}

.about-stat-label {
    color: var(--ink-600);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* 关于我们:公司图片 */
.about-company-image {
    margin: var(--sp-16) 0;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-caption {
    margin-top: var(--sp-4);
    text-align: center;
    color: var(--ink-500);
    font-size: var(--text-sm);
    font-style: italic;
}

/* 关于我们:介绍 */
.about-intro {
    max-width: 800px;
    margin: 0 auto var(--sp-16);
}

.about-intro p {
    font-size: var(--text-lg);
    line-height: 1.9;
    color: var(--ink-700);
    margin-bottom: var(--sp-5);
}

/* 关于我们:时间轴 */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--sp-8) 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--brand-200);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: var(--sp-4) var(--sp-8);
    margin-bottom: var(--sp-6);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: var(--sp-6);
    width: 16px;
    height: 16px;
    background: var(--brand-600);
    border: 3px solid var(--ink-0);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    right: -8px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline-year {
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--brand-700);
    margin-bottom: var(--sp-1);
}

.timeline-content {
    font-size: var(--text-sm);
    color: var(--ink-700);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: var(--sp-12);
        padding-right: 0;
    }
    .timeline-item::before {
        left: 12px !important;
        right: auto !important;
    }
}

/* 关于我们:资质 */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
}

@media (max-width: 1024px) {
    .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
    overflow: hidden;
    transition: all var(--t-base) var(--ease);
}

.cert-card:hover {
    border-color: var(--brand-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 服务流程 */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--sp-4);
    margin-top: var(--sp-10);
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-step {
    position: relative;
    text-align: center;
    padding: var(--sp-6);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--t-base) var(--ease);
}

.process-step::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    color: var(--brand-400);
    font-size: var(--text-2xl);
    font-weight: 700;
    z-index: 2;
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 1024px) {
    .process-step::after {
        display: none;
    }
}

.process-step:hover {
    border-color: var(--brand-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.process-num {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--sp-3);
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    color: var(--ink-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 800;
}

.process-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--sp-2);
}

.process-desc {
    font-size: var(--text-sm);
    color: var(--ink-600);
    line-height: 1.5;
}

/* =============================================================
   20. 联系页
   ============================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-12);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--sp-8);
    text-align: center;
    transition: all var(--t-base) var(--ease);
}

.contact-card:hover {
    border-color: var(--brand-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--sp-4);
    background: var(--brand-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-700);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--sp-3);
}

.contact-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--brand-700);
    margin-bottom: var(--sp-2);
}

.contact-desc {
    color: var(--ink-600);
    font-size: var(--text-sm);
    margin-bottom: var(--sp-4);
}

.contact-card .btn {
    width: 100%;
}

/* 表单 */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--sp-8);
    margin-bottom: var(--sp-12);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-field {
    margin-bottom: var(--sp-4);
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-800);
    margin-bottom: var(--sp-2);
}

.form-label .required {
    color: var(--danger);
    margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: var(--ink-0);
    font-family: inherit;
    font-size: var(--text-base);
    color: var(--ink-900);
    transition: border-color var(--t-fast) var(--ease);
    min-height: 48px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--brand-600);
    box-shadow: 0 0 0 3px var(--brand-100);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    font-size: var(--text-sm);
    color: var(--ink-700);
    cursor: pointer;
}

.form-checkbox input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--brand-600);
}

/* =============================================================
   21. 通用 — skip link, sr only
   ============================================================= */
/* 默认完全隐藏,只对屏幕阅读器和键盘 tab 可见 */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--brand-700);
    color: var(--ink-0);
    padding: var(--sp-2) var(--sp-4);
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
}

/* 键盘 tab 聚焦时显示在视口顶部 */
.skip-link:focus,
.skip-link:focus-visible {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    outline: 3px solid var(--brand-300);
    outline-offset: -3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 焦点可见 — 键盘无障碍 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--brand-600);
    outline-offset: 2px;
}

/* 响应图片 */
.wp-block-image img,
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* =============================================================
   22. 实用工具类
   ============================================================= */
.text-center { text-align: center; }
.text-brand  { color: var(--brand-700); }
.bg-gray     { background: var(--ink-50); }
.bg-dark     { background: var(--ink-900); color: var(--ink-0); }
.mt-4 { margin-top: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-8 { margin-bottom: var(--sp-8); }

/* 减少动效 */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}