/* ============ 全局样式 - 高级审美升级 ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::root {
    /* 主色系 - 深蓝+绿色科技配 */
    --primary-blue: #0F47AF;
    --primary-dark: #05217A;
    --secondary-green: #00B876;
    --accent-cyan: #00D4FF;
    --accent-purple: #7C3AED;
    
    /* 文字色系 - 增强对比度，优化可读性 */
    --text-primary: #1a1a2e;
    --text-secondary: #333333;
    --text-light: #FFFFFF;
    --text-muted: #555555;
    --text-nav: #E0E8F0;  /* 导航栏文本 - 更亮，对比度 7:1 */
    
    /* 背景色系 */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F1419;
    --bg-dark-card: #1A202C;
    
    /* 边框和分割 */
    --border-light: #E2E8F0;
    --border-dark: #2D3748;
    
    /* 阴影系统 - 多层次 */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.16);
    --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
    
    /* 过渡 */
    --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-swift: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-white);
    letter-spacing: 0.3px;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

/* 首页优化 - 保留楷体 + 提升可读性 */
body {
    font-family: "楷体", KaiTi, "STKaiti", "Kai", "FZKai-Z03", serif;
    line-height: 1.8;
    font-size: 16px;
}

/* 正文内容保持楷体 */
body .content-header h2,
body .content-header p,
body .content-desc,
body .content-section h3,
body .content-section p,
body .tab-btn,
body .section-title,
body .section-desc,
body .about-text p,
body .strategy-card p,
body .adv-card-front p,
body .timeline-content p,
body .honor-name,
body .culture-text-content p,
body .feature-item p,
body .arch-pillar p,
body .advantage-card p,
body .stats-item p,
body .culture-card p,
body .culture-content p {
    font-family: inherit;
    line-height: 1.8;
}

/* 卡片类保持楷体 */
body .card *,
body .bs-card *,
body .feature-card *,
body .tech-card *,
body .arch-pillar .pillar-content *,
body .advantage-card *,
body .honor-card *,
body .culture-card *,
body .timeline-slide * {
    font-family: inherit;
}

/* Hero标题保留楷体 */
body .hero-content h1 {
    font-family: inherit;
    font-size: 42px;
    line-height: 1.3;
}

body .hero-content p {
    font-family: inherit;
    font-size: 18px;
    line-height: 1.8;
}

/* ============ 导航栏 - 高级玻璃态设计 ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* 桌面端导航栏悬停效果（768px以上才生效，移动端菜单不受影响） */
@media (min-width: 769px) {
    .navbar:hover .nav-link {
        color: #0A0F1E !important;
    }

    .navbar:hover .nav-link:hover,
    .navbar:hover .nav-link.active {
        color: #0F47AF !important;
    }
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.navbar-logo {
    margin-left: -30px;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s var(--easing-bounce);
}

.navbar-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s var(--easing-bounce);
}

.navbar-logo a:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.navbar-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #E0E8F0 !important;  /* 强制浅白色，深色背景对比清晰 */
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding: 10px 16px;
    transition: all 0.3s var(--easing-smooth);
    font-family: 'KaiTi', 'STKaiti', '楷体', '楷体_GB2312', serif;
}

/* 首页导航项与四字导航等宽 */
.navbar-menu .nav-link:first-child {
    letter-spacing: 0.85em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D4FF 0%, #00B876 100%);
    border-radius: 2px;
    transition: all 0.4s var(--easing-bounce);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 32px);
}

.nav-link:hover,
.nav-link.active {
    color: #00D4FF;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* ============ Hero区域 - 超级科技感 ============ */
.hero {
    position: relative;
    min-height: 730px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0d2040;
}

/* 视频背景 */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* 视频遮罩层 - 完全移除 */
.hero-video-overlay {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

/* 移除原有::before遮罩（已由 .hero-video-overlay 替代） */
.hero::before {
    display: none;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -60px); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00D4FF 0%, #00B876 100%);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(0.5px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation: particle-float 8s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    right: 20%;
    animation: particle-float 10s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.particle-3 {
    top: 40%;
    right: 10%;
    animation: particle-float 9s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes particle-float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(0, -100px) scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    animation: fade-in-up 0.8s var(--easing-smooth) 0.2s both;
    transform: translateY(-100px);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextFade {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

.hero-content {
    animation: heroTextFade 3s ease-in-out forwards;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.18);
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 2px;
    font-family: 'KaiTi', 'STKaiti', '楷体', '楷体_GB2312', serif;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.hero-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 500;
    font-family: 'KaiTi', 'STKaiti', '楷体', '楷体_GB2312', serif;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    transform: translateY(80px);
}

/* ============ 按钮系统 - 高级交互 - 移动优先 ============ */
.btn {
    padding: 16px 40px;
    min-height: 48px;  /* 移动设备标准尺寸 */
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;  /* 统一的圆角 */
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;  /* 改为 flex 确保垂直居中 */
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--easing-bounce);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    outline: none;  /* 去除默认 outline */
}

/* 键盘焦点状态 - 无障碍支持 */
.btn:focus-visible {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;  /* 不影响鼠标事件 */
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #17D517 0%, #12B812 100%);
    color: var(--text-light);
    box-shadow: 0 8px 24px rgba(23, 213, 23, 0.3);
    opacity: 0.99;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(23, 213, 23, 0.4);
    opacity: 1.0;
}

.btn-primary:active {
    transform: translateY(-2px);
    opacity: 0.6;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: transparent;
    border-color: #ffffff;
    color: var(--secondary-green);
    transform: translateY(-2px);
}

/* ============ Hero 内嵌统计条（与zero-carbon页统一风格） ============ */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg, 16px);
    padding: 28px 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hsb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.hsb-item + .hsb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(15, 71, 175, 0.2);
}

.hsb-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.hsb-unit {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hsb-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary, #475569);
    margin-top: 6px;
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* ============ 统计区域 ============ */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(15, 71, 175, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 8px;
}

/* ============ 卡片系统 - 高级设计 ============ */
.card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--easing-bounce);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0F47AF 0%, #00B876 50%, #00D4FF 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--easing-bounce);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.2);
}

.card:hover::before {
    transform: scaleX(1);
}

/* ============ 通用Section ============ */
section {
    padding: 80px 40px;
}

/* 优化：区块间距增加呼吸感 */
.unified-block {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 30px rgba(0, 212, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5);
}

.section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-shadow: 
        0 0 8px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.2);
}

/* 副标题描述 - 与 section-title p 风格统一 */
.section-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-shadow: 
        0 0 6px rgba(0, 212, 255, 0.3),
        0 0 15px rgba(0, 212, 255, 0.15);
}

/* 资质荣誉板块 - 蓝色背景标题样式 */
.credentials-section .section-title-dark {
    color: #000000;
    background: none;
    -webkit-text-fill-color: #000000;
    text-shadow: none;
}

/* 资质荣誉副标题居中框 */
.credentials-subtitle-row {
    display: flex;
    justify-content: center;
    margin: 0 0 32px;
}

.credentials-subtitle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    min-width: 220px;
}

.credentials-subtitle-box .section-subtitle-white {
    margin: 0 !important;
    font-size: 18px !important;
    text-align: center;
}

.credentials-section .section-desc {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* 资质荣誉 - 深蓝色副标题样式 */
.credentials-section .section-subtitle-white {
    font-size: 18px !important;
    font-weight: 500;
    margin: 0 0 32px !important;
    color: #0F47AF !important;
    background: none;
    -webkit-text-fill-color: #0F47AF !important;
    text-shadow: none;
    text-align: center !important;
    display: block;
}

/* 副标题 - 浅色背景用黑色 */
.section-subtitle-light {
    font-size: 14px;
    color: #00D4AA;
    font-weight: 500;
    margin: 0 0 32px;
}

/* 核心优势标题 - 白色+青色光效 */
.advantages-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 30px rgba(0, 212, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5);
}

/* ============ 核心业务区 ============ */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.business-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    cursor: pointer;
    transition: all 0.4s var(--easing-bounce);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0) 0%, rgba(0, 212, 255, 0) 100%);
    transition: background 0.4s ease;
    pointer-events: none;
}

.business-card:hover {
    transform: translateY(-14px);
    background: linear-gradient(135deg, #FFFFFF 0%, #EEF6FF 100%);
    box-shadow: 0 24px 60px rgba(15, 71, 175, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.3);
}

.business-card:hover::after {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(0, 184, 118, 0.03) 100%);
}

.business-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.business-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 800;
}

.business-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

/* ============ CTA区域 - 清新白底蓝按钮风格 ============ */
.cta-section {
    background: #F8FAFC;
    color: var(--text-dark);
    text-align: center;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 48px auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 71, 175, 0.08);
    box-shadow: 0 4px 24px rgba(15, 71, 175, 0.06);
}

.cta-section::before {
    display: none;
}

.cta-section::after {
    display: none;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(15, 71, 175, 0.08) 0%, rgba(0, 184, 118, 0.06) 100%);
    border: 1px solid rgba(15, 71, 175, 0.15);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    font-weight: 800;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    font-size: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.cta-actions .btn {
    padding: 14px 32px;
    font-size: 15px;
    min-height: 48px;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, #0F47AF 0%, #1D5FE8 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(15, 71, 175, 0.3);
}

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(15, 71, 175, 0.4);
}

.cta-actions .btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 1.5px solid rgba(15, 71, 175, 0.3);
}

.cta-actions .btn-outline:hover {
    background: rgba(15, 71, 175, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.cta-note::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(15, 71, 175, 0.2), transparent);
    margin: 0 auto 16px;
}

/* ============ Footer ============ */
.footer {
    background: linear-gradient(180deg, #0A0F1E 0%, #060B14 100%);
    color: var(--text-light);
    padding: 64px 40px 24px;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    text-align: left;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 6px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: #00D4FF;
}

.footer-section ul li a:hover {
    color: #00D4FF;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.footer-bottom p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #00D4FF;
}

/* ---- 精致版 Footer 组件样式 ---- */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    /* Logo 在深色Footer中显示为白色 */
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
}

.footer-contact span {
    font-size: 17px;
    color: #94a3b8;
}

.footer-links h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-contact-block h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-contact-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.footer-qr {
    margin-top: 16px;
}

.footer-qr img {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    border: none;
    /* 外发光 + 毛玻璃效果 */
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 0 20px rgba(0, 184, 118, 0.08),
        0 0 40px rgba(0, 212, 255, 0.04);
    background: rgba(255,255,255,0.02);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.footer-qr img:hover {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 24px rgba(0, 184, 118, 0.15),
        0 0 48px rgba(0, 212, 255, 0.08);
    transform: scale(1.03);
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px dashed rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #64748b;
    background: rgba(255,255,255,0.03);
}

@media (max-width: 640px) {
    .footer-logo img {
        height: 28px;
    }
    .footer-qr img,
    .qr-placeholder {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .footer {
        padding: 48px 20px 20px;
    }
}

/* ============ 浮动客服 ============ */
/* ============ 在线客服浮动按钮（sevalo风格） ============ */
.floating-service {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
}

.floating-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid #17D517;
    animation: pulse-ring 2.5s ease infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.6; }
    50%  { transform: scale(1.08); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.6; }
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #17D517 0%, #12B812 100%);
    color: #FFFFFF;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(23, 213, 23, 0.4);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.service-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 40px rgba(23, 213, 23, 0.6);
}

.service-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============ 移动端菜单展开状态 ============ */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 30, 0.97);
        backdrop-filter: blur(16px);
        padding: 16px 0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(0, 212, 255, 0.15);
        z-index: 1000;
        gap: 0;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 14px 28px;
        font-size: 15px;
        font-weight: 600;
        color: #E0E8F0;             /* 显式白色，防止继承页面文字色 */
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        text-align: left;
        transition: background 0.2s ease, color 0.2s ease;
        letter-spacing: 0.3px;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(0, 212, 255, 0.08);
        color: #00D4FF;
    }

    .nav-link.active {
        background: rgba(0, 212, 255, 0.1);
        color: #00D4FF;
        border-left: 3px solid #00D4FF;
        padding-left: 25px;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .navbar {
        position: sticky;
    }
}

/* ============ 响应式设计 - 5档完整系统 ============ */

/* 平板及以上 (1281px+) - 默认桌面样式 */
@media (min-width: 1281px) {
    .navbar-container {
        padding: 0 40px;
    }
    
    section {
        padding: 80px 40px;
    }
}

/* 小笔记本 (1024px to 1280px) - 适配13-15寸笔记本 */
@media (max-width: 1280px) and (min-width: 1024px) {
    .navbar-container {
        padding: 0 24px;
    }
    
    .navbar-menu {
        gap: 28px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 8px 10px;
        letter-spacing: 0.02em;
    }
    
    .navbar-logo img {
        height: 36px;
    }
    
    section {
        padding: 60px 24px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

/* 平板设备 (768px to 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .navbar-menu {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 8px;
    }
    
    .navbar-logo img {
        height: 32px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    section {
        padding: 50px 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* 中等手机 (481px to 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .navbar-container {
        padding: 0 24px;
    }
    
    .navbar-logo img {
        height: 33px;
    }
    
    .navbar-menu {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-stats-bar { max-width: 100%; padding: 20px 0; }
    .hero-stats-bar .hsb-value { font-size: 32px; }
    .hero-stats-bar .hsb-unit { font-size: 16px; }
    
    .hero-buttons {
        gap: 16px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .floating-service {
        bottom: 20px;
        right: 20px;
    }

    .service-btn > span:last-child { display: none; }
    .service-btn { padding: 0; width: 56px; height: 56px; justify-content: center; }
    
    section {
        padding: 50px 24px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .intro-card,
    .strategy-card,
    .advantage-card,
    .credentials-category,
    .trinity-item {
        padding: 32px 24px;
    }
    
    .cta-section {
        padding: 50px 24px;
    }
}

/* 小型手机 (480px 及以下) */
@media (max-width: 480px) {
    .navbar-container {
        padding: 0 16px;
        height: 70px;
    }
    
    .navbar-logo img {
        height: 29px;
    }
    
    .navbar-menu {
        gap: 6px;
        font-size: 11px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 4px 6px;
        white-space: nowrap;
    }
    
    .hero {
        min-height: 400px;
        padding: 20px 16px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .hero-stats-bar {
        flex-wrap: wrap;
        gap: 0;
        padding: 16px 8px;
        max-width: 100%;
    }
    .hero-stats-bar .hsb-item {
        flex: 0 0 50%;
        padding: 8px 0;
    }
    .hero-stats-bar .hsb-item + .hsb-item::before {
        display: none;
    }
    .hero-stats-bar .hsb-value { font-size: 28px; }
    .hero-stats-bar .hsb-unit { font-size: 14px; }
    .hero-stats-bar .hsb-label { font-size: 11px; }
    
    .floating-service {
        bottom: 16px;
        right: 16px;
    }

    .service-btn { width: 50px; height: 50px; }
    .service-icon { width: 28px; height: 28px; }
    .service-icon svg { width: 18px; height: 18px; }
    }

    section {
        padding: 40px 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .intro-card,
    .strategy-card,
    .advantage-card,
    .credentials-category,
    .trinity-item {
        padding: 24px 16px;
    }
    
    .hero-stats {
        gap: 16px;
        padding-top: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 40px 16px;
        margin: 40px auto;
        border-radius: 16px;
    }
}

/* ========== 首页新模块：深度精细化样式 ========== */

/* 全局容器 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section头部 */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 184, 118, 0.08) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a2e;
    text-shadow: 
        0 0 6px rgba(255, 255, 255, 0.4),
        0 0 12px rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

/* 渐变文本 */
.gradient-text {
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 50%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== 模块一：企业简介 ========== */
.enterprise-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.enterprise-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.intro-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s var(--easing-bounce);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0F47AF 0%, #00B876 50%, #00D4FF 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--easing-bounce);
}

.intro-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 212, 255, 0.3);
}

.intro-card:hover::before {
    transform: scaleX(1);
}

.intro-card-main {
    grid-column: auto;
    border: 2px solid var(--primary-blue);
}

.gradient-border {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.intro-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.intro-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.intro-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--accent-cyan);
}

.business-list {
    list-style: none;
}

.business-list li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 0;
}

.business-list strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.stats-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.stat-item-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 184, 118, 0.04) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-number-small {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label-small {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* 时间线 */
.timeline-container {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 184, 118, 0.04) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 60px 40px;
    margin-top: 60px;
}

.timeline-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 48px;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0F47AF 0%, #00B876 50%, #00D4FF 100%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-left: 0;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 22px;
    top: 8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding-left: 80px;
    padding-top: 4px;
}

.timeline-year {
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

/* ========== 模块二：发展战略 ========== */
.strategy-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.strategy-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 48px 40px;
    transition: all 0.4s var(--easing-bounce);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    transition: all 0.4s var(--easing-smooth);
    z-index: 0;
}

.strategy-card:hover::before {
    top: -25%;
    left: -25%;
}

.strategy-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 212, 255, 0.3);
}

.strategy-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.strategy-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.strategy-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.strategy-list {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.strategy-list li {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 0;
    font-weight: 500;
}

/* 路线图 */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.roadmap-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 184, 118, 0.04) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
}

.roadmap-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 32px;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roadmap-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.roadmap-icon {
    font-size: 28px;
    min-width: 40px;
    flex-shrink: 0;
}

.roadmap-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.roadmap-item strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ========== 模块三：核心优势 - 高级紧凑版 ========== */
.advantages-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 10px 40px 40px;
}

.advantages-compact {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adv-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s var(--easing-smooth);
    position: relative;
    overflow: hidden;
}

.adv-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0F47AF 0%, #00B876 100%);
    transform: scaleY(0);
    transition: transform 0.3s var(--easing-smooth);
}

.adv-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 212, 255, 0.2);
}

.adv-item:hover::before {
    transform: scaleY(1);
}

.adv-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.adv-content {
    flex: 1;
}

.adv-content h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.adv-icon {
    font-size: 18px;
    filter: grayscale(0.3);
}

.adv-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* ========== 模块四：资质荣誉 ========== */
.credentials-section {
    background: linear-gradient(135deg, #0F47AF 0%, #1a5dc7 50%, #0F47AF 100%);
    padding: 10px 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.credentials-category {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s var(--easing-bounce);
}

.credentials-category:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
}

.credentials-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credentials-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 184, 118, 0.04) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s var(--easing-smooth);
}

.credential-badge:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 184, 118, 0.08) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(4px);
}

.badge-icon {
    font-size: 24px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.credential-badge span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* ========== 模块五：企业文化 ========== */
.culture-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

/* 使命愿景价值观 */
.culture-trinity {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.trinity-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 48px 40px;
    transition: all 0.4s var(--easing-bounce);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trinity-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    transition: all 0.4s var(--easing-smooth);
    z-index: 0;
}

.trinity-item:hover::before {
    top: -25%;
    right: -25%;
}

.trinity-item:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 212, 255, 0.3);
}

.trinity-icon {
    font-size: 56px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.trinity-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.trinity-main {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.trinity-sub {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* 企业精神与团队 */
.spirit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.spirit-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 184, 118, 0.04) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
}

.spirit-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 28px;
}

.spirit-list {
    list-style: none;
}

.spirit-list li {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 4px solid var(--accent-cyan);
    font-weight: 500;
}

.spirit-list strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.spirit-section p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 500;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: var(--bg-white);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.team-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.team-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========== 关于我们板块样式 ========== */
.about-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F8FAFC 100%);
    padding: 100px 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 26px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px !important;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 760px;
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.highlight-tag {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 184, 118, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.about-timeline {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
}

.about-timeline h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.timeline-row .year {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    min-width: 60px;
    text-align: center;
}

.timeline-row .event {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 发展战略 */
.strategy-section {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 48px;
}

.strategy-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 32px;
    text-align: center;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.strategy-item {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 184, 118, 0.02) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s var(--easing-bounce);
}

.strategy-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.3);
}

.strategy-num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.strategy-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.strategy-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== 资质荣誉滑动轮播样式 ========== */
.honor-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.honor-carousel {
    overflow: hidden;
    border-radius: 12px;
}

.honor-slide {
    display: none;
}

.honor-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.honor-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 71, 175, 0.15);
}

.honor-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
}

.honor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.honor-name {
    padding: 16px 20px;
    text-align: center;
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
    margin: 0;
    background: #fff;
    line-height: 1.6;
}

/* 左右箭头 */
.honor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0F47AF;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.honor-arrow:hover {
    background: #0F47AF;
    color: #fff;
}

.honor-arrow-left {
    left: 0;
}

.honor-arrow-right {
    right: 0;
}

/* 圆点指示器 */
.honor-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.honor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.honor-dot.active {
    background: #0F47AF;
    width: 30px;
    border-radius: 5px;
}

.honor-dot:hover {
    background: #00B876;
}

/* 响应式 */
@media (max-width: 1024px) {
    .honor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .honor-carousel-wrapper {
        padding: 0 40px;
    }
    
    .honor-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .honor-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 资质荣誉精简版样式 ========== */
.credentials-section .section-title-dark {
    color: #000000 !important;
    background: none;
    -webkit-text-fill-color: #000000;
    text-shadow: none;
}

.credentials-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.cred-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--easing-bounce);
}

.cred-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 212, 255, 0.3);
}

.cred-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cred-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.cred-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== 企业文化（卡片版） - 蓝色背景 ========== */
.culture-section {
    background: linear-gradient(135deg, #0F47AF 0%, #1a5dc7 50%, #0F47AF 100%);
    padding: 10px 40px;
}

.culture-header {
    text-align: center;
    margin-bottom: 48px;
}

.culture-header .section-title-dark {
    color: #000000 !important;
    background: none;
    -webkit-text-fill-color: #000000;
    text-shadow: none;
}

.culture-header .section-subtitle-white {
    color: #0F47AF !important;
    background: none;
    -webkit-text-fill-color: #0F47AF !important;
    text-shadow: none;
}

.culture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.culture-card {
    position: relative;
    padding: 12px 16px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0F47AF, #00D4FF, #00B876);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 30px rgba(0,212,255,0.1);
    border-color: rgba(0,212,255,0.3);
}

.culture-card:hover::before {
    opacity: 1;
}

.culture-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 8px;
    display: block;
}

.culture-card-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    margin-bottom: 8px;
}

.culture-card h4 {
    font-size: 20px !important;
    font-weight: 700;
    color: #0F47AF !important;
    margin: 8px 12px 4px !important;
    padding: 6px 16px 10px !important;
    background: none;
    border-radius: 0 !important;
    text-align: center !important;
    letter-spacing: 4px;
    position: relative;
    z-index: 3;
}

.culture-card h4::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    margin: 6px auto 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        #a8c4f0 30%,
        #a8c4f0 70%,
        transparent 85%,
        transparent 100%
    );
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 底托条 hover 流光效果 */
.culture-card:hover h4::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 10%,
        #a8c4f0 20%,
        #ffffff 40%,
        #a8c4f0 60%,
        transparent 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: barShimmer 1.2s linear infinite;
}

@keyframes barShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* 企业文化卡片图片样式 */
.culture-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.culture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 描述文字 - 科技感hover效果 */
.culture-card p {
    font-size: 16px !important;
    color: #334155 !important;
    line-height: 1.7;
    margin: 4px 10px 14px !important;
    text-align: center !important;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

/* 科技感hover：渐变流光 + 发光 */
.culture-card:hover p {
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    color: transparent !important;
    background: linear-gradient(
        90deg,
        #0F47AF 0%,
        #00D4FF 30%,
        #00ffcc 50%,
        #00D4FF 70%,
        #0F47AF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow:
        0 0 8px rgba(0,212,255,0.6),
        0 0 20px rgba(0,212,255,0.3),
        0 0 40px rgba(0,212,255,0.15);
    animation: cultureTextShimmer 1.8s linear infinite;
}

@keyframes cultureTextShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* 企业文化板块 - 黑色文字+底色 */
.culture-section .section-title-dark {
    color: #1a1a2e !important;
    background: none;
    -webkit-text-fill-color: #1a1a2e !important;
    text-shadow: none;
}

/* 左侧标题 - 左对齐并与右侧图片顶部对齐 */
.culture-section-title {
    text-align: left !important;
    margin-bottom: 0;
    font-size: 26px;
}

/* 左文右图容器 */
.culture-lr-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    max-width: 840px;
    margin: 0 auto;
    align-items: start;
}

/* 左侧文字区 */
.culture-left {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

/* 只显示当前活动的卡片 */
.culture-text-card {
    display: none;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-white);
    border: 2px solid #00B876;
    border-radius: 12px;
    box-shadow: 0 6px 21px rgba(15, 71, 175, 0.12);
    transition: all 0.4s var(--easing-bounce);
}

.culture-text-card.active {
    display: flex;
}

/* 箭头按钮容器 */
.culture-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.culture-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.culture-arrow:hover {
    border-color: #00B876;
    color: #00B876;
    transform: scale(1.1);
}

.culture-text-card.active {
    opacity: 1;
    transform: translateX(0);
    border-color: #00B876;
    box-shadow: 0 6px 21px rgba(15, 71, 175, 0.12);
}

.culture-num {
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 49px;
}

.culture-text-content h3 {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
}

.culture-text-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* 右侧图片区 */
.culture-right {
    position: relative;
}

.culture-img-carousel {
    position: relative;
    width: 100%;
    height: 294px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.15);
}

.culture-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.culture-img-slide.active {
    opacity: 1;
}

.culture-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 56px;
}

/* 圆点指示器 - 定位在图片底部中央 */
.culture-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.culture-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.culture-dot.active {
    background: #fff;
    width: 21px;
    border-radius: 4px;
}

.culture-dot:hover {
    background: #fff;
}

/* 响应式 */
@media (max-width: 900px) {
    .culture-lr-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .culture-img-carousel {
        height: 210px;
    }
    
    .culture-text-card {
        padding: 14px;
    }
    
    .culture-num {
        font-size: 25px;
        min-width: 35px;
    }
}
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0F47AF 0%, #00B876 50%, #00D4FF 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--easing-bounce);
}

.culture-item:hover::before {
    transform: scaleX(1);
}

.culture-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.culture-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.culture-main {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #0F47AF 0%, #00B876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.4;
}

.culture-sub {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.culture-spirit {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.spirit-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 184, 118, 0.04) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
}

.spirit-box h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.spirit-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.spirit-box strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* 响应式补充 */
@media (max-width: 1200px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .strategy-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credentials-simple {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .enterprise-intro-grid,
    .strategy-grid,
    .advantages-grid,
    .credentials-grid,
    .culture-trinity {
        gap: 24px;
    }
    
    .roadmap-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .spirit-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .credentials-section,
    .culture-section,
    .advantages-section {
        padding: 60px 24px;
    }
    
    .strategy-cards,
    .culture-cards {
        grid-template-columns: 1fr;
    }
    
    .strategy-section {
        padding: 32px 24px;
    }
    
    .credentials-simple {
        grid-template-columns: 1fr;
    }
    
    .culture-simple {
        grid-template-columns: 1fr;
    }
    
    .culture-spirit {
        grid-template-columns: 1fr;
    }
    
    .about-timeline {
        padding: 24px;
    }
    
    /* 核心优势响应式 */
    .adv-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .adv-item {
        padding: 20px 16px;
    }
    
    .adv-content h3 {
        font-size: 16px;
    }
    
    .adv-content p {
        font-size: 13px;
    }
    
    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .about-highlights {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .intro-card,
    .strategy-card,
    .advantage-card,
    .credentials-category,
    .trinity-item {
        padding: 32px 24px;
    }
    
    .trinity-main {
        font-size: 24px;
    }
    
    .timeline::before {
        left: 24px;
    }
    
    .timeline-dot {
        left: 12px;
        width: 24px;
        height: 24px;
    }
    
    .timeline-content {
        padding-left: 60px;
    }
    
    .stats-grid-small,
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== 企业简介 - 统一深蓝渐变区块 ========== */
.unified-gradient-section {
    position: relative;
    background: linear-gradient(180deg, 
        #0a1628 0%,
        #0d1f3c 15%,
        #1a365d 30%,
        #2d4a7c 45%,
        #5a7ba8 60%,
        #94a3b8 75%,
        #cbd5e1 85%,
        #f1f5f9 92%,
        #ffffff 100%
    );
}

.unified-block {
    padding: 10px 0;
}

/* 通用标题样式 - 深色背景用 */
/* 千里马绿智 - 纯白色无光效 */
.section-title-brand {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #ffffff;
}

/* 企业图标图片限制 */
.brand-logo-img {
    max-width: 240px;
    max-height: 72px;
    height: auto;
    display: block;
    margin-left: -20px;
}

/* 其他板块 - 黑色字体+白色光效阴影 */
.section-title-dark {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 8px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    color: #1a1a2e !important;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.05),
        0 0 16px rgba(255, 255, 255, 0.03);
}

/* 白色标题样式 - 蓝色背景区块用黑色标题+白色发光 */
.section-title-white {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 8px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    text-shadow: none;
}
}

.section-subtitle-dark {
    font-size: 18px !important;
    font-weight: 500;
    margin: 0 0 32px;
    color: #00D4FF;
    background: none;
    -webkit-text-fill-color: #00D4FF;
}

/* 蓝色背景区块的白色副标题 */
.section-subtitle-white {
    font-size: 18px !important;
    font-weight: 500;
    margin: 0 0 32px;
    color: #ffffff !important;
    background: none;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.5),
        0 0 16px rgba(255, 255, 255, 0.25);
}

/* 企业简介区块 - 左文右视频布局 */
.about-grid.about-with-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 24px;
    padding-left: 40px;
}

.about-text p {
    font-size: 16px !important;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 760px;
}

.about-text strong {
    color: #00D4FF;
    font-weight: 700;
}

/* 内联标签 */
.about-highlights-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.highlight-tag-dark {
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

/* 视频播放器区域 */
.about-video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.15);
    cursor: pointer;
}

.about-video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-video-container:hover .about-video {
    transform: scale(1.05);
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15,71,175,0.4) 0%,
        rgba(0,212,255,0.2) 50%,
        rgba(0,184,118,0.3) 100%
    );
    pointer-events: none;
}

.about-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(0,212,255,0.3);
    border-radius: 16px;
    pointer-events: none;
    z-index: 2;
}

.about-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    transition: all 0.3s ease;
}

.about-video-container:hover .about-video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-circle {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F47AF;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.4);
    transition: all 0.3s ease;
}

.about-video-container:hover .play-btn-circle {
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.6);
    transform: scale(1.1);
}

.play-btn-circle svg {
    margin-left: 4px;
}

.play-btn-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

/* 视频播放中隐藏按钮 */
.about-video-container.playing .about-video-play {
    opacity: 0;
    pointer-events: none;
}

/* 发展战略区块 */
.strategy-block {
    padding-top: 0;
}

.strategy-header {
    text-align: center;
    margin-bottom: 48px;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.strategy-card {
    position: relative;
    padding: 36px 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0F47AF, #00D4FF, #00B876);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 30px rgba(0,212,255,0.1);
    border-color: rgba(0,212,255,0.3);
}

.strategy-card:hover::before {
    opacity: 1;
}

.strategy-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(15,71,175,0.1) 0%, rgba(0,212,255,0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F47AF;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.strategy-card:hover .strategy-icon {
    background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(0,184,118,0.1) 100%);
    transform: scale(1.1);
}

.strategy-num {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Barlow Condensed', sans-serif;
    background: linear-gradient(135deg, #0F47AF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.strategy-card h4 {
    font-size: 22px !important;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.strategy-card p {
    font-size: 16px !important;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* ========== 发展历程 - 三卡片轮播时间线 - 透明背景继承父级渐变 ========== */
.timeline-section {
    background: transparent;
    padding: 60px 0;
    overflow: hidden;
}

.timeline-header {
    text-align: center;
    margin-bottom: 48px;
}

/* 发展历程板块 - 标题样式 */
.timeline-section .section-title-dark {
    color: #ffffff !important;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: none;
}

.timeline-section .section-subtitle-dark,
.timeline-section .section-subtitle-white,
.strategy-section .section-subtitle-dark,
.strategy-header .section-subtitle-dark {
    font-size: 18px !important;
    color: #00D4FF !important;
    background: none;
    -webkit-text-fill-color: #00D4FF !important;
    text-shadow: none;
}

.strategy-header .section-title-dark {
    color: #000000 !important;
    background: none;
    -webkit-text-fill-color: #000000;
    text-shadow: none;
}

.advantages-header .section-title-white {
    color: #ffffff !important;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: none;
}

.advantages-header .section-subtitle-white {
    color: #00D4FF !important;
    background: none;
    -webkit-text-fill-color: #00D4FF !important;
    text-shadow: none;
}

.timeline-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

.timeline-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-slide {
    min-width: 33.333%;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
}

/* 卡片样式 - 默认透明 */
.tc-card {
    background: transparent;
    border-radius: 16px;
    padding: 28px 24px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease;
}

.tc-card:hover {
    transform: translateY(-2px);
}

.tc-year {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Barlow Condensed', sans-serif;
    background: linear-gradient(135deg, #0F47AF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.tc-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0F47AF, #00D4FF, transparent);
    margin: 0 auto 16px;
}

.tc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tc-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.tc-month {
    display: none;
}

.tc-event {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    line-height: 1.6;
}

/* 白底卡片样式 */
.tc-card-body {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 简化箭头按钮 */
.tc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-arrow:hover {
    color: #ffffff;
}

.tc-arrow.prev {
    left: 10px;
}

.tc-arrow.next {
    right: 10px;
}

/* 底部指示器 */
.timeline-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: #00D4FF;
    border-color: #00D4FF;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* 响应式 */
@media (max-width: 768px) {
    .timeline-carousel-wrapper {
        padding: 0 40px;
    }
    
    .timeline-slide {
        min-width: 50%;
    }
    
    .tc-card {
        padding: 20px 16px;
    }
    
    .tc-year {
        font-size: 26px;
    }
    
    .tc-arrow {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .tc-arrow.prev {
        left: 5px;
    }
    
    .tc-arrow.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .timeline-slide {
        min-width: 100%;
    }
}

/* 视频播放器响应式 */
@media (max-width: 1024px) {
    .about-grid.about-with-video {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-video-container {
        max-width: 100%;
    }
    
    .about-video {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .unified-block {
        padding: 60px 0;
    }
    
    .section-title-dark {
        font-size: 26px;
    }
    
    .strategy-cards {
        grid-template-columns: 1fr;
    }
    
    .strategy-card {
        padding: 24px 20px;
    }
    
    .strategy-num {
        font-size: 40px;
    }
    
    /* 视频播放器移动端适配 */
    .about-video {
        height: 220px;
    }
    
    .play-btn-circle {
        width: 60px;
        height: 60px;
    }
    
    .play-btn-circle svg {
        width: 20px;
        height: 20px;
    }
    
    .play-btn-text {
        font-size: 12px;
    }
}

/* ========== 资质荣誉视觉冲击版 ========== */
.credentials-section {
    background: #fff;
    padding: 10px 0;
}

.honor-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.honor-image-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 280px;
}

.honor-image-panel.right {
    align-items: flex-end;
}

.honor-frame {
    position: relative;
    width: 260px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 71, 175, 0.1), rgba(0, 212, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 71, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.honor-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 71, 175, 0.2);
}

.honor-frame.small {
    width: 200px;
    height: 150px;
}

.honor-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor-frame-glow {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0F47AF, #00D4FF);
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.honor-frame:hover .honor-frame-glow {
    opacity: 0.4;
}

.honor-frame-glow.blue {
    background: linear-gradient(135deg, #0F47AF, #00D4FF);
}

.honor-frame-glow.green {
    background: linear-gradient(135deg, #00B876, #00D4AA);
}

.honor-frame-glow.purple {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

.honor-frame-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(15, 71, 175, 0.9), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.honor-data-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(15, 71, 175, 0.03), rgba(0, 212, 255, 0.02));
    border-radius: 24px;
    padding: 40px 20px;
    border: 1px solid rgba(15, 71, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.honor-data-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0F47AF, #00D4FF, #00B876, #8B5CF6);
    background-size: 200% 100%;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.honor-data-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    position: relative;
}

.honor-data-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #0F47AF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

.honor-data-unit {
    font-size: 28px;
    font-weight: 700;
    color: #00D4FF;
    margin-left: -8px;
    vertical-align: super;
}

.honor-data-label {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

.honor-data-divider {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0F47AF, transparent);
    opacity: 0.3;
}

.honor-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.honor-tag {
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(15, 71, 175, 0.08), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(15, 71, 175, 0.15);
    border-radius: 50px;
    font-size: 14px;
    color: #0F47AF;
    font-weight: 500;
    transition: all 0.3s ease;
}

.honor-tag:hover {
    background: linear-gradient(135deg, #0F47AF, #00D4FF);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 71, 175, 0.3);
}

.culture-section {
    background: #fff;
    padding: 80px 0;
}

.culture-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.culture-showcase-card {
    flex: 0 0 320px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(15, 71, 175, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.culture-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.culture-showcase-card:hover::before {
    left: 100%;
}

.culture-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(15, 71, 175, 0.15);
}

.culture-showcase-card.center {
    background: linear-gradient(145deg, rgba(15, 71, 175, 0.05), rgba(0, 212, 255, 0.03));
    border-color: rgba(0, 184, 122, 0.2);
}

.culture-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(20px);
    animation: pulse-glow 2s ease-in-out infinite;
}

.culture-glow.blue {
    background: linear-gradient(135deg, #0F47AF, #00D4FF);
}

.culture-glow.green {
    background: linear-gradient(135deg, #00B876, #00D4AA);
}

.culture-glow.purple {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.culture-icon-text {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 10px rgba(15, 71, 175, 0.5);
    position: relative;
    z-index: 1;
}

.culture-showcase-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0F47AF !important;
    margin-bottom: 16px !important;
    position: relative;
    z-index: 1;
}

.culture-showcase-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.highlight-text {
    color: #0F47AF;
    font-weight: 700;
    background: linear-gradient(135deg, #0F47AF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.culture-line-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.culture-line-accent.blue {
    background: linear-gradient(90deg, transparent, #0F47AF, #00D4FF, transparent);
}

.culture-line-accent.green {
    background: linear-gradient(90deg, transparent, #00B876, #00D4AA, transparent);
}

.culture-line-accent.purple {
    background: linear-gradient(90deg, transparent, #8B5CF6, #EC4899, transparent);
}

@media (max-width: 1024px) {
    .honor-showcase {
        flex-direction: column;
    }
    
    .honor-image-panel {
        flex-direction: row;
        justify-content: center;
        flex: none;
    }
    
    .honor-image-panel.right {
        align-items: center;
    }
    
    .honor-data-panel {
        order: -1;
        margin-bottom: 30px;
    }
    
    .culture-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .culture-showcase-card {
        flex: none;
        width: 90%;
        max-width: 400px;
    }
}