/**
 * ============================================================
 * 埃思哲建设咨询官网 - 主样式表
 * 主色: #1e3a8a (深蓝) | 辅色: #d97706 (琥珀金)
 * 响应式: 移动端优先
 * ============================================================
 */

/* ==================== CSS变量 ==================== */
:root {
    --primary: #1e3a8a;
    --primary-light: #2563eb;
    --primary-dark: #1e3a5f;
    --accent: #d97706;
    --accent-light: #f59e0b;
    --accent-dark: #b45309;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --container: 1200px;
    --header-height: 72px;
}

/* ==================== 重置与基础 ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ==================== 布局容器 ==================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== 头部导航 ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    max-height: 48px;
    max-width: 48px;
    object-fit: contain;
}

.logo-img {
    max-height: 48px;
    max-width: 48px;
    object-fit: contain;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.logo-text-line1 {
    font-size: 17px;
    font-weight: 700;
    color: #1e3a8a;
    white-space: nowrap;
    display: block;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.logo-text-line2 {
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    white-space: nowrap;
    display: block;
    line-height: 1.3;
    margin-top: 1px;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    padding: 8px 12px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    position: relative;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
    background: rgba(30, 58, 138, 0.05);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 20px;
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: var(--radius);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ==================== 按钮样式 ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ==================== Hero区域 ==================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f1d4a 0%, #1e3a8a 50%, #1e4094 100%);
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/building-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
    padding: 50px 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: #fff;
    text-align: center;
}

/* 数据区域 */
.hero-data-area {
    text-align: center;
}

/* Hero内数据区域（无白底，蓝色背景白色文字） */
.hero-data-wrap {
    width: 100%;
    padding-bottom: 28px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hdata-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.hdata-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    position: relative;
}

.hdata-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), transparent);
}

.hdata-icon {
    width: 64px;
    height: 64px;
    border: 2px solid #c41e2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.hdata-icon svg {
    width: 32px;
    height: 32px;
    color: #c41e2a;
}

.hdata-item:hover .hdata-icon {
    background: rgba(196,30,42,0.15);
}

.hdata-text { text-align: left; }

.hdata-num {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hdata-label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Slogan - 书法体+倾斜 */
.hslogan-area {
    position: relative;
    padding-bottom: 16px;
    transform: skewX(-8deg);
    transform-origin: center bottom;
}

.hslogan-text {
    font-size: 26px;
    color: #fff;
    font-family: 'KaiTi', 'STKaiti', '华文楷体', '楷体', serif;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 1.6;
}

.hslogan-text .sl1 { display: block; }
.hslogan-text .sl2 { display: block; padding-left: 48px; }

.hslogan-brush {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-30%) skewX(-8deg);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, #c41e2a, rgba(196,30,42,0.3), transparent);
    border-radius: 2px;
    transform-origin: left center;
}

.hero-right {
    justify-self: center;
    width: 100%;
    max-width: 460px;
}

.hero-content {
    color: #fff;
}

.hero-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-title-area {
    text-align: center;
}

.hero-title-area .hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
}

.hero-title-area .hero-en-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-align: center;
}

.hero-title-area .hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    line-height: 1.6;
    text-align: center;
}

.hero-desc .highlight-red {
    display: inline-block;
    background: #c41e2a;
    color: #fff;
    padding: 2px 12px;
    border-radius: 4px;
    font-weight: 600;
    margin: 0 4px;
}

/* Hero资质标签行 */
.hero-tags-overlay {
    margin-top: 20px;
    text-align: center;
}

.hero-tags-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 6px;
}

.hero-tag-ovl {
    padding: 4px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
}

.hero-form-wrapper {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.hero-form-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.hero-form-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.hero-form .form-group {
    margin-bottom: 16px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
}

/* select 特殊处理：使用完全不透明白色背景 + 深蓝文字。
   确保在 hero 深蓝背景上清晰可见；
   option 在 Chrome 原生白色下拉框中继承深蓝文字也可见。 */
.hero-form select {
    background: #ffffff;
    color: #1e3a8a;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    font-weight: 500;
}

/* select focus 时保持不透明白色背景（覆盖默认的半透明 focus 样式） */
.hero-form select:focus {
    background: #ffffff;
    color: #1e3a8a;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.25);
    outline: none;
}

/* select 的 placeholder option 灰色提示 */
.hero-form select option[value=""] {
    color: #94a3b8;
}

/* 白色背景下的下拉箭头改为深蓝色 */
.hero-form select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

/* 通用 focus 样式（不含 select，select 单独处理避免半透明背景导致文字看不清） */
.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}

/* select focus：强制保持不透明白色背景，不能和 input/textarea 一样用半透明 */
.hero-form select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #ffffff;
    color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.25);
}

.hero-form .btn {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
}

/* ==================== 数据展示区域（无白底，融入背景） ==================== */
.data-showcase {
    text-align: center;
    padding: 20px 0;
}

.data-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 48px;
    position: relative;
}

.data-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
}

.data-icon {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.data-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.data-item:hover .data-icon {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.data-text { text-align: left; }

.data-item .data-num {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.data-item .data-num span {
    color: #fff;
    font-weight: 600;
}

.data-item .data-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    letter-spacing: 1px;
}

.slogan-area {
    padding-top: 24px;
}

.slogan-text {
    font-size: 26px;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 4px;
    line-height: 1.8;
}

.slogan-text .line1 { display: block; }
.slogan-text .line2 { display: block; padding-left: 40px; }

/* ==================== 核心优势红色背景区 ==================== */
.core-advantage-section {
    background: linear-gradient(135deg, #c41e2a 0%, #a01822 100%);
    padding: 48px 0 40px;
}

.core-advantage-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

.core-advantage-card {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-bottom: none;
    padding: 32px 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.core-advantage-card:first-child {
    border-radius: var(--radius-lg) 0 0 0;
    border-right: none;
}

.core-advantage-card:nth-child(2) {
    border-right: none;
}

.core-advantage-card:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.core-advantage-card svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* 分隔线 */
.core-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 0 32px;
}

/* 数据条 */
.data-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.data-bar .data-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.data-bar .data-item svg {
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.9);
}

.data-bar .data-num {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.data-bar .data-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}

/* Slogan */
.core-advantage-section .slogan-text {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-style: italic;
    letter-spacing: 3px;
    margin-top: 8px;
}

/* ==================== 服务优势区域 ==================== */
.trust-section {
    position: relative;
    background: linear-gradient(135deg, rgba(15,29,74,0.85) 0%, rgba(30,58,138,0.85) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/building-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.trust-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}

.trust-section .section-label {
    color: rgba(255,255,255,0.7);
}

.trust-section .section-title {
    color: #fff;
}

.trust-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.trust-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 32px;
    background: #c41e2a;
    border-radius: var(--radius-lg);
    color: #fff;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196,30,42,0.3);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.trust-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.trust-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* ==================== 独立表单区域 ==================== */
.form-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.form-section .hero-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-section .hero-form-title {
    color: var(--text);
    text-align: center;
}

.form-section .hero-form-subtitle {
    color: var(--text-light);
    text-align: center;
}

.form-section .hero-form input,
.form-section .hero-form select {
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--text);
}

.form-section .hero-form input::placeholder {
    color: var(--text-muted);
}

.form-section .hero-form select {
    background: #ffffff;
    color: var(--text);
    border: 2px solid var(--border);
}

.form-section .hero-form select option[value=""] {
    color: var(--text-muted);
}

.form-section .hero-form select option {
    color: var(--text);
}

.form-section .hero-form select:focus {
    background-color: #ffffff;
    color: var(--text);
    border-color: var(--accent);
}

.form-section .hero-form input:focus,
.form-section .hero-form textarea:focus {
    background: var(--bg-light);
    border-color: var(--accent);
}

/* ==================== 业务卡片区域 ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    padding: 4px 12px;
    background: var(--bg-gray);
    color: var(--text-light);
    font-size: 13px;
    border-radius: 20px;
}

/* ==================== 流程区域 ==================== */
.process-section {
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 32px;
    position: relative;
}

.process-item {
    text-align: center;
    padding: 28px 18px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

/* 步骤之间的箭头连接（横向） */
.process-item:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--primary);
    transform: translateY(-50%);
    z-index: 2;
}

/* 第二行卡片上方箭头（第一行指向第二行） */
@media (min-width: 769px) {
    .process-item:nth-child(1)::before,
    .process-item:nth-child(2)::before,
    .process-item:nth-child(3)::before {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 10px solid var(--primary);
        transform: translateX(-50%);
        z-index: 2;
    }
}

.process-num {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== 资质卡片（顶部大图） ==================== */
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid var(--border);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.service-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== 服务范围卡片按钮 ==================== */
.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 10px 24px;
    background: #1e3a8a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    align-self: flex-start;
}

.service-card-btn:hover {
    background: #c41e2a;
    transform: translateY(-1px);
}

.service-card-btn svg {
    width: 16px;
    height: 16px;
}

/* ==================== 表单区域标题 ==================== */
.form-section-title {
    text-align: center;
    margin-bottom: 8px;
}

.form-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: 1px;
}

.form-section-title h2 span {
    color: #c41e2a;
}

.form-submit-count {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.form-submit-count strong {
    color: #c41e2a;
    font-size: 18px;
    font-weight: 700;
}

/* 表单卡片边框增强 */
.form-section .hero-form-wrapper {
    border: 1px solid #e2e8f0;
}

/* ==================== 案例区域 ==================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.case-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.case-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.case-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
}

.case-body {
    padding: 24px;
}

.case-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.case-meta-item {
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-gray);
    padding: 4px 10px;
    border-radius: 4px;
}

.case-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== 评价区域 ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    color: var(--border);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== 文章列表 ==================== */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
}

.article-image {
    height: 100%;
    min-height: 180px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-size: 13px;
    border-radius: 4px;
    margin-bottom: 12px;
    width: fit-content;
}

.article-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--text);
}

.article-card h3 a:hover {
    color: var(--primary);
}

.article-summary {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==================== 文章详情页 ==================== */
.article-detail {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
}

.article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.article-header h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.article-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

.article-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
    color: var(--text);
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--primary);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.article-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.article-content ol li {
    list-style: decimal;
    margin-bottom: 8px;
}

.article-content strong {
    color: var(--text);
    font-weight: 600;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--accent);
}

.article-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}

/* FAQ区域 */
.faq-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--border-light);
}

.faq-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--text-muted);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 18px 24px;
    max-height: 500px;
}

/* 相关文章 */
.related-section {
    margin-top: 48px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.related-card:hover {
    border-color: var(--primary);
}

.related-card h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-card h4 a {
    color: var(--text);
}

.related-card h4 a:hover {
    color: var(--primary);
}

.related-card .date {
    font-size: 13px;
    color: var(--text-muted);
}

/* CTA区域 */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: #fff;
    margin-top: 48px;
}

.cta-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

/* ==================== 关于我们页面 ==================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    background: linear-gradient(135deg, var(--bg-gray), var(--bg-light));
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    width: 100%;
}

.about-image-placeholder {
    text-align: center;
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    color: var(--primary);
    opacity: 0.5;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* 王工人设 */
.expert-section {
    background: var(--bg-light);
    padding: 80px 0;
    margin-bottom: 80px;
}

.expert-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
}

.expert-avatar {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.expert-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.expert-title {
    color: var(--accent);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.expert-bio {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.expert-stats {
    display: flex;
    gap: 32px;
}

.expert-stat {
    text-align: center;
}

.expert-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.expert-stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

/* 四大优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.advantage-card {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.advantage-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.advantage-num {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== 联系我们页面 ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-detail h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 15px;
    color: var(--text-light);
}

.wechat-qrcode {
    width: 200px;
    height: 200px;
    background: var(--bg-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.contact-form-wrapper {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ==================== 表单样式 ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-success {
    padding: 16px;
    background: #ecfdf5;
    border: 1px solid var(--success);
    border-radius: var(--radius);
    color: #065f46;
    margin-bottom: 20px;
}

.form-error {
    padding: 16px;
    background: #fef2f2;
    border: 1px solid var(--danger);
    border-radius: var(--radius);
    color: #991b1b;
    margin-bottom: 20px;
}

/* ==================== 面包屑导航 ==================== */
.breadcrumb {
    background: var(--bg-light);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-inner a {
    color: var(--text-light);
}

.breadcrumb-inner a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 500;
}

/* ==================== 分页 ==================== */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.pagination-info {
    font-size: 14px;
    color: var(--text-light);
}

.pagination-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-link.current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.page-ellipsis {
    color: var(--text-muted);
    padding: 0 4px;
}

/* ==================== 筛选标签 ==================== */
.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==================== 页脚 ==================== */
.footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

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

.footer-contact-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.footer-wechat {
    flex-shrink: 0;
    text-align: center;
}

.footer-wechat img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    object-fit: cover;
}

.footer-wechat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-icp {
    color: rgba(255,255,255,0.5);
}

.footer-icp a {
    color: rgba(255,255,255,0.5);
}

/* ==================== 隐私政策弹窗 ==================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-inner p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-inner a {
    color: var(--primary);
    text-decoration: underline;
}

/* ==================== 返回顶部 ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==================== 页面标题区域 ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 100px 0 60px;
    margin-top: var(--header-height);
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

/* ==================== 侧边栏 ==================== */
.sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.widget-list li {
    margin-bottom: 12px;
}

.widget-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.widget-list a:hover {
    color: var(--primary);
}

.widget-list .count {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-gray);
    padding: 2px 8px;
    border-radius: 10px;
}

/* ==================== 业务体系页面 ==================== */
.service-detail-section {
    margin-bottom: 60px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.service-detail-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.service-detail-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--primary);
}

.service-detail-content p {
    margin-bottom: 16px;
}

.service-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.service-list-table th,
.service-list-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.service-list-table th {
    background: var(--bg-light);
    font-weight: 600;
    font-size: 14px;
}

.service-list-table tr:hover td {
    background: var(--bg-light);
}

/* ==================== FAQ页面 ==================== */
.faq-list {
    max-width: 800px;
}

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .expert-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expert-stats {
        justify-content: center;
    }
    
    .process-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Header */
    .header-inner {
        height: 56px;
    }

    .nav {
        display: none;
    }

    .header-phone {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 700;
    }

    .header-phone svg {
        width: 20px;
        height: 20px;
        color: #c41e2a;
    }

    .mobile-toggle {
        display: flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        background: rgba(30,58,138,0.08);
        border-radius: 8px;
        margin-left: 8px;
    }

    .mobile-toggle svg {
        width: 20px;
        height: 20px;
        color: #1e3a8a;
    }

    /* Hero - 顺序: 数据→标题→表单 */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 0 32px;
    }

    .hero-right {
        order: 0;
        max-width: 100%;
    }

    .form-section-title h2 {
        font-size: 18px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .hero-data-wrap {
        padding-bottom: 16px;
        margin-bottom: 8px;
    }

    .hdata-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .hdata-item {
        flex-direction: column;
        padding: 0;
        gap: 6px;
        flex: 1;
    }

    .hdata-item:not(:last-child)::after {
        display: none;
    }

    .hdata-icon {
        width: 40px;
        height: 40px;
    }

    .hdata-icon svg {
        width: 20px;
        height: 20px;
    }

    .hdata-text {
        text-align: center;
    }

    .hdata-num {
        font-size: 22px;
        white-space: nowrap;
    }

    .hdata-label {
        font-size: 11px;
        white-space: nowrap;
    }

    .hslogan-text {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hslogan-text .sl2 {
        padding-left: 20px;
    }

    .hero-title {
        font-size: 32px;
        white-space: nowrap;
    }

    .hero-desc {
        font-size: 16px;
        white-space: nowrap;
    }

    .hero-en-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-label {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    .hero-tag-ovl {
        font-size: 12px;
        padding: 3px 12px;
        margin-right: 6px;
        margin-bottom: 6px;
        white-space: nowrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card-img {
        height: 140px;
    }

    .service-card-body {
        padding: 16px;
    }

    .service-card-body h3 {
        font-size: 16px;
    }

    .service-card-body p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .service-card-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .process-item {
        padding: 16px 8px;
    }

    .process-num {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .process-item h3 {
        font-size: 13px;
    }

    .process-item p {
        font-size: 11px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        padding: 20px 16px;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
    }

    .trust-icon svg {
        width: 22px;
        height: 22px;
    }

    .trust-content h3 {
        font-size: 15px;
    }

    .trust-content p {
        font-size: 12px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .wechat-qrcode {
        margin: 0 auto;
    }

    /* 文章卡片 - 图片缩小，文字加大 */
    .article-card {
        grid-template-columns: 120px 1fr;
    }

    .article-image {
        min-height: 100px;
    }

    .article-body {
        padding: 12px 12px 12px 0;
    }

    .article-body h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .article-body p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .article-meta {
        font-size: 12px;
    }

    /* Footer - 快速链接和业务服务并列 */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-nav {
        min-width: 0;
    }

    .footer-contact-info {
        grid-column: 1 / -1;
    }

    .footer-contact-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-wechat img {
        width: 80px;
        height: 80px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .article-detail {
        border: none;
        padding: 0;
    }
}

/* ==================== 打印样式 ==================== */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .back-to-top,
    .cta-section {
        display: none !important;
    }
    
    .article-detail {
        border: none;
        padding: 0;
    }
}
