/* ========================================
   无锡腾帆科技有限公司 - 科技风格网站
   支持浅色 / 深色双主题切换（无zoom版本）
   ======================================== */

/* ========================================
   浅色主题（默认）
   ======================================== */
:root,
[data-theme="light"] {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: rgba(0, 0, 0, 0.08);
    --gradient-1: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    /* 阴影等比放大 */
    --shadow-glow: 0 0 50px rgba(37, 99, 235, 0.12);
    --shadow-card: 0 5px 25px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 15px 50px rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.95);
    --footer-bg: #f1f5f9;
    --input-bg: #f8fafc;
    --particle-color-1: '#2563eb';
    --particle-color-2: '#7c3aed';
    --hero-overlay: rgba(248, 250, 252, 0.7);
    --cert-overlay-bg: rgba(15, 23, 42, 0.7);
    --modal-overlay: rgba(15, 23, 42, 0.6);
}

/* ========================================
   深色主题
   ======================================== */
[data-theme="dark"] {
    --primary: #60a5fa;
    --primary-dark: #3b82f6;
    --secondary: #a78bfa;
    --accent: #fbbf24;
    --bg-dark: #0a0e1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-main: #e8eaf0;
    --text-muted: #8b92a5;
    --border: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    /* 阴影等比放大 */
    --shadow-glow: 0 0 50px rgba(96, 165, 250, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 15px 50px rgba(0, 0, 0, 0.4);
    --nav-bg: rgba(10, 14, 26, 0.8);
    --nav-bg-scrolled: rgba(10, 14, 26, 0.95);
    --footer-bg: rgba(0, 0, 0, 0.3);
    --input-bg: rgba(255, 255, 255, 0.03);
    --particle-color-1: '#60a5fa';
    --particle-color-2: '#a78bfa';
    --hero-overlay: rgba(10, 14, 26, 0.7);
    --cert-overlay-bg: rgba(10, 14, 26, 0.6);
    --modal-overlay: rgba(0, 0, 0, 0.85);
}

/* ========================================
   全局基础
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* 移除原zoom:1.25，改用真实尺寸放大 */
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* 原80px ×1.25 */
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px; /* 原默认16px ×1.25，与缩放后效果一致 */
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px; /* 原1200px ×1.25 */
    margin: 0 auto;
    padding: 0 30px; /* 原24px ×1.25 */
}

/* ========================================
   粒子背景
   ======================================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ========================================
   主题切换按钮
   ======================================== */
.theme-toggle {
    width: 53px; /* 原42px ×1.25 */
    height: 53px;
    border-radius: 15px; /* 原12px ×1.25 */
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 22px; /* 原18px ×1.25 */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px; /* 原8px ×1.25 */
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 0 19px rgba(37, 99, 235, 0.15); /* 原15px ×1.25 */
}

[data-theme="dark"] .theme-toggle:hover {
    box-shadow: 0 0 19px rgba(96, 165, 250, 0.2);
}

/* ========================================
   导航栏
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0; /* 原16px ×1.25 */
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--nav-bg-scrolled);
    border-bottom: 1px solid var(--border);
    padding: 15px 0; /* 原12px ×1.25 */
}

.nav-container {
    max-width: 1750px; /* 原1400px ×1.25 */
    margin: 0 auto;
    padding: 0 30px; /* 原24px ×1.25 */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px; /* 原12px ×1.25 */
}

.logo-icon {
    width: 53px; /* 原42px ×1.25 */
    height: 53px;
    border-radius: 13px; /* 原10px ×1.25 */
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px; /* 原20px ×1.25 */
    color: #fff;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.25); /* 原20px ×1.25 */
    transition: box-shadow 0.3s ease;
}

[data-theme="dark"] .logo-icon {
    box-shadow: 0 0 25px rgba(96, 165, 250, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 22px; /* 原20px ×1.25 */
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo-sub {
    font-size: 13px; /* 原10px ×1.25 */
    color: var(--text-muted);
    letter-spacing: 1px; /* 原2px ×1.25 */
}

.nav-menu {
    display: flex;
    gap: 4px; /* 原4px ×1.25 */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-link {
    padding: 8px 16px; /* 原8px 16px ×1.25 */
    font-size: 16px; /* 原14px ×1.25，核心导航字号 */
    color: var(--text-muted);
    border-radius: 10px; /* 原8px ×1.25 */
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    background: rgba(96, 165, 250, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px; /* 原5px ×1.25 */
    cursor: pointer;
    padding: 10px; /* 原8px ×1.25 */
}

.nav-toggle span {
    width: 30px; /* 原24px ×1.25 */
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   Hero区域
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 30px 100px; /* 原120px 24px 80px ×1.25 */
    z-index: 1;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    z-index: -1;
}

[data-theme="dark"] .hero-bg-grid {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
}

.hero-bg-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 75px 75px; /* 原60px ×1.25 */
}

[data-theme="dark"] .hero-bg-grid::before {
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
}

.hero-content {
    text-align: center;
    max-width: 1125px; /* 原900px ×1.25 */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* 原8px ×1.25 */
    padding: 10px 25px; /* 原8px 20px ×1.25 */
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 125px; /* 原100px ×1.25 */
    font-size: 16px; /* 原13px ×1.25 */
    color: var(--primary);
    margin-bottom: 40px; /* 原32px ×1.25 */
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    font-size: 16px; /* 原14px ×1.25 */
}

.hero-title {
    font-size: clamp(50px, 7.5vw, 90px); /* 原40px/6vw/72px ×1.25 */
    font-weight: 800;
    letter-spacing: 10px;
    line-height: 1.2;
    margin-bottom: 30px; /* 原24px ×1.25 */
    color: var(--text-main);
    animation: fadeInUp 0.8s ease 0.1s both;
    transition: color 0.3s ease;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 20px; /* 原18px ×1.25 */
    color: var(--text-muted);
    max-width: 875px; /* 原700px ×1.25 */
    margin: 0 auto 50px; /* 原40px ×1.25 */
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 20px; /* 原16px ×1.25 */
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px; /* 原64px ×1.25 */
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px; /* 原64px ×1.25 */
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.stat-number {
    font-size: 52.5px; /* 原42px ×1.25 */
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 17.5px; /* 原14px ×1.25 */
    color: var(--text-muted);
    margin-top: 10px; /* 原8px ×1.25 */
}

.hero-scroll {
    position: absolute;
    bottom: 50px; /* 原40px ×1.25 */
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* 原8px ×1.25 */
    color: var(--text-muted);
    font-size: 15px; /* 原12px ×1.25 */
}

.scroll-indicator i {
    font-size: 20px; /* 原16px ×1.25 */
}

/* ========================================
   按钮
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12.5px; /* 原10px ×1.25 */
    padding: 17.5px 40px; /* 原14px 32px ×1.25 */
    border-radius: 15px; /* 原12px ×1.25 */
    font-size: 18.75px; /* 原15px ×1.25 */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 5px 25px rgba(37, 99, 235, 0.3); /* 原4px 20px ×1.25 */
}

[data-theme="dark"] .btn-primary {
    box-shadow: 0 5px 25px rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 37.5px rgba(37, 99, 235, 0.4); /* 原8px 30px ×1.25 */
}

[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 10px 37.5px rgba(96, 165, 250, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   通用Section样式
   ======================================== */
.section {
    position: relative;
    padding: 125px 0; /* 原100px ×1.25 */
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px; /* 原64px ×1.25 */
}

.section-tag {
    font-size: 16px; /* 原13px ×1.25 */
    color: var(--primary);
    letter-spacing: 5px; /* 原4px ×1.25 */
    text-transform: uppercase;
    margin-bottom: 15px; /* 原12px ×1.25 */
    font-weight: 600;
}

.section-title {
    font-size: clamp(35px, 5vw, 52.5px); /* 原28px/4vw/42px ×1.25 */
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px; /* 原16px ×1.25 */
    transition: color 0.3s ease;
    letter-spacing: 5px;
}

.section-desc {
    font-size: 16px; /* 原16px ×1.25 */
    color: var(--text-muted);
    max-width: 750px; /* 原600px ×1.25 */
    margin: 0 auto;
}

/* ========================================
   关于我们
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px; /* 原32px ×1.25 */
    align-items: start;
}

.about-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px; /* 原20px ×1.25 */
    padding: 50px; /* 原48px ×1.25 */
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    font-size:18px;
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px); /* 原4px ×1.25 */
    box-shadow: var(--shadow-card-hover);
}

[data-theme="dark"] .about-card:hover {
    border-color: rgba(96, 165, 250, 0.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px; /* 原200px ×1.25 */
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

[data-theme="dark"] .card-glow {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
}

.about-icon {
    width: 70px; /* 原56px ×1.25 */
    height: 70px;
    border-radius: 17.5px; /* 原14px ×1.25 */
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; /* 原24px ×1.25 */
    color: #fff;
    margin-bottom: 30px; /* 原24px ×1.25 */
}

.about-card h3 {
    font-size: 30px; /* 原24px ×1.25 */
    color: var(--text-main);
    margin-bottom: 20px; /* 原16px ×1.25 */
    transition: color 0.3s ease;
}

.about-card p {
    color: var(--text-muted);
    margin-bottom: 20px; /* 原16px ×1.25 */
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 17.8px; /* 原16px ×1.25 */
}

.feature-card {
    display: flex;
    gap: 20px; /* 原16px ×1.25 */
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px; /* 原16px ×1.25 */
    padding: 35px; /* 原24px ×1.25 */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(5px); /* 原4px ×1.25 */
}

[data-theme="dark"] .feature-card:hover {
    border-color: rgba(96, 165, 250, 0.2);
}

.feature-icon {
    width: 60px; /* 原48px ×1.25 */
    height: 60px;
    min-width: 60px;
    border-radius: 15px; /* 原12px ×1.25 */
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px; /* 原20px ×1.25 */
    color: var(--primary);
}

.feature-card h4 {
    font-size: 20px; /* 原16px ×1.25 */
    color: var(--text-main);
    margin-bottom: 7.5px; /* 原6px ×1.25 */
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 17.5px; /* 原14px ×1.25 */
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   核心数据横幅
   ======================================== */
.core-data {
    padding: 75px 0; /* 原60px ×1.25 */
}

.data-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* 原24px ×1.25 */
    background: var(--gradient-1);
    border-radius: 25px; /* 原20px ×1.25 */
    padding: 50px; /* 原40px ×1.25 */
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.15); /* 原12px 40px ×1.25 */
}

[data-theme="dark"] .data-banner {
    box-shadow: 0 15px 50px rgba(96, 165, 250, 0.15);
}

.data-item {
    text-align: center;
    padding: 20px; /* 原16px ×1.25 */
}

.data-item i {
    font-size: 45px; /* 原36px ×1.25 */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px; /* 原12px ×1.25 */
    display: block;
}

.data-item h3 {
    font-size: 20px; /* 原16px ×1.25 */
    color: #fff;
    margin-bottom: 5px; /* 原4px ×1.25 */
}

.data-item p {
    font-size: 16px; /* 原13px ×1.25 */
    color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   解决方案
   ======================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* 原24px ×1.25 */
}

.solution-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px; /* 原20px ×1.25 */
    padding: 45px 40px; /* 原36px 32px ×1.25 */
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.75px; /* 原3px ×1.25 */
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.solution-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-7.5px); /* 原6px ×1.25 */
    box-shadow: var(--shadow-glow);
}

[data-theme="dark"] .solution-card:hover {
    border-color: rgba(96, 165, 250, 0.2);
}

.solution-icon {
    width: 70px; /* 原56px ×1.25 */
    height: 70px;
    border-radius: 17.5px; /* 原14px ×1.25 */
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px; /* 原24px ×1.25 */
    color: var(--primary);
    margin-bottom: 25px; /* 原20px ×1.25 */
}

.solution-card h3 {
    font-size: 22px; /* 原18px ×1.25 */
    color: var(--text-main);
    margin-bottom: 15px; /* 原12px ×1.25 */
    transition: color 0.3s ease;
}

.solution-card p {
    font-size: 16px; /* 原14px ×1.25 */
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px; /* 原20px ×1.25 */
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 原8px ×1.25 */
}

.solution-tags span {
    padding: 5px 15px; /* 原4px 12px ×1.25 */
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 100px;
    font-size: 15px; /* 原12px ×1.25 */
    color: var(--primary);
}

[data-theme="dark"] .solution-tags span {
    background: rgba(96, 165, 250, 0.08);
    border-color: rgba(96, 165, 250, 0.15);
}

/* ========================================
   产品服务
   ======================================== */
.products {
    background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.02) 50%, transparent 100%);
}

[data-theme="dark"] .products {
    background: linear-gradient(180deg, transparent 0%, rgba(96, 165, 250, 0.02) 50%, transparent 100%);
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px; /* 原20px ×1.25 */
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px; /* 原16px ×1.25 */
    padding: 25px 20px 30px; /* 原20px 16px 24px ×1.25 */
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px); /* 原4px ×1.25 */
    box-shadow: var(--shadow-glow);
}

[data-theme="dark"] .product-card:hover {
    border-color: rgba(96, 165, 250, 0.2);
}

/* 产品截图区域 */
.product-screenshot {
    width: 100%;
    height: 175px; /* 原140px ×1.25 */
    border-radius: 12.5px; /* 原10px ×1.25 */
    overflow: hidden;
    margin-bottom: 20px; /* 原16px ×1.25 */
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(124, 58, 237, 0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

[data-theme="dark"] .product-screenshot {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(167, 139, 250, 0.08) 100%);
}

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

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

.product-screenshot-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 45px; /* 原36px ×1.25 */
    color: var(--primary);
    opacity: 0.5;
}

.product-icon {
    width: 60px; /* 原48px ×1.25 */
    height: 60px;
    border-radius: 15px; /* 原12px ×1.25 */
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px; /* 原20px ×1.25 */
    color: var(--secondary);
    margin: 0 auto 15px; /* 原12px ×1.25 */
}

.product-card h3 {
    font-size: 16px; /* 原14px ×1.25 */
    color: var(--text-main);
    margin-bottom: 5px; /* 原4px ×1.25 */
    transition: color 0.3s ease;
}

.product-card p {
    font-size: 14px; /* 原12px ×1.25 */
    color: var(--text-muted);
}

/* ========================================
   技术能力
   ======================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px; /* 原20px ×1.25 */
}

.tech-item {
    text-align: center;
    padding: 30px 20px; /* 原24px 16px ×1.25 */
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px; /* 原16px ×1.25 */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.tech-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px); /* 原4px ×1.25 */
    box-shadow: var(--shadow-glow);
}

[data-theme="dark"] .tech-item:hover {
    border-color: rgba(96, 165, 250, 0.2);
}

.tech-circle {
    width: 80px; /* 原64px ×1.25 */
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px; /* 原26px ×1.25 */
    color: var(--primary);
    margin: 0 auto 20px; /* 原16px ×1.25 */
    transition: all 0.3s ease;
}

.tech-item:hover .tech-circle {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.3); /* 原20px ×1.25 */
}

[data-theme="dark"] .tech-item:hover .tech-circle {
    box-shadow: 0 0 25px rgba(96, 165, 250, 0.3);
}

.tech-item h4 {
    font-size: 16px; /* 原15px ×1.25 */
    color: var(--text-main);
    margin-bottom: 7.5px; /* 原6px ×1.25 */
    transition: color 0.3s ease;
}

.tech-item p {
    font-size: 14px; /* 原12px ×1.25 */
    color: var(--text-muted);
}

/* ========================================
   新闻
   ======================================== */
.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px; /* 原24px ×1.25 */
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px; /* 原20px ×1.25 */
    padding: 40px; /* 原32px ×1.25 */
    transition: all 0.3s ease;
    display: flex;
    gap: 30px; /* 原24px ×1.25 */
    box-shadow: var(--shadow-card);
}

.news-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px); /* 原4px ×1.25 */
    box-shadow: var(--shadow-card-hover);
}

[data-theme="dark"] .news-card:hover {
    border-color: rgba(96, 165, 250, 0.2);
}

.news-card.featured {
    grid-row: span 1;
}

.news-date {
    text-align: center;
    min-width: 87.5px; /* 原70px ×1.25 */
    padding: 20px 15px; /* 原16px 12px ×1.25 */
    background: rgba(37, 99, 235, 0.05);
    border-radius: 15px; /* 原12px ×1.25 */
    border: 1px solid rgba(37, 99, 235, 0.1);
}

[data-theme="dark"] .news-date {
    background: rgba(96, 165, 250, 0.05);
    border-color: rgba(96, 165, 250, 0.1);
}

.news-date .day {
    display: block;
    font-size: 35px; /* 原28px ×1.25 */
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 15px; /* 原12px ×1.25 */
    color: var(--text-muted);
    margin-top: 7.5px; /* 原6px ×1.25 */
}

.news-tag {
    display: inline-block;
    padding: 5px 15px; /* 原4px 12px ×1.25 */
    background: rgba(124, 58, 237, 0.12);
    border-radius: 100px;
    font-size: 13.75px; /* 原11px ×1.25 */
    color: var(--secondary);
    margin-bottom: 15px; /* 原12px ×1.25 */
}

.news-card h3 {
    font-size: 21.25px; /* 原17px ×1.25 */
    color: var(--text-main);
    margin-bottom: 12.5px; /* 原10px ×1.25 */
    line-height: 1.5;
    transition: color 0.3s ease;
}

.news-card p {
    font-size: 17.5px; /* 原14px ×1.25 */
    color: var(--text-muted);
    margin-bottom: 20px; /* 原16px ×1.25 */
    line-height: 1.7;
}

.news-link {
    font-size: 16.25px; /* 原13px ×1.25 */
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 7.5px; /* 原6px ×1.25 */
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 12.5px; /* 原10px ×1.25 */
}

/* ========================================
   客户评价
   ======================================== */
.testimonials {
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.02) 50%, transparent 100%);
}

[data-theme="dark"] .testimonials {
    background: linear-gradient(180deg, transparent 0%, rgba(167, 139, 250, 0.02) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* 原24px ×1.25 */
}

.testimonial-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px; /* 原20px ×1.25 */
    padding: 45px; /* 原36px ×1.25 */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-5px); /* 原4px ×1.25 */
    box-shadow: var(--shadow-card-hover);
}

[data-theme="dark"] .testimonial-card:hover {
    border-color: rgba(167, 139, 250, 0.2);
}

.quote-icon {
    font-size: 40px; /* 原32px ×1.25 */
    color: rgba(37, 99, 235, 0.15);
    margin-bottom: 20px; /* 原16px ×1.25 */
}

[data-theme="dark"] .quote-icon {
    color: rgba(96, 165, 250, 0.2);
}

.testimonial-card p {
    font-size: 18.75px; /* 原15px ×1.25 */
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 30px; /* 原24px ×1.25 */
    font-style: italic;
    transition: color 0.3s ease;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 17.5px; /* 原14px ×1.25 */
}

.author-avatar {
    width: 55px; /* 原44px ×1.25 */
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22.5px; /* 原18px ×1.25 */
    color: #fff;
    font-weight: 700;
}

.testimonial-author h5 {
    font-size: 18.75px; /* 原15px ×1.25 */
    color: var(--text-main);
    transition: color 0.3s ease;
}

.testimonial-author span {
    font-size: 16.25px; /* 原13px ×1.25 */
    color: var(--text-muted);
}

/* ========================================
   资质荣誉 - 证书画廊
   ======================================== */
.cert-tabs {
    display: flex;
    justify-content: center;
    gap: 15px; /* 原12px ×1.25 */
    margin-bottom: 50px; /* 原40px ×1.25 */
    flex-wrap: wrap;
}

.cert-tab {
    padding: 12.5px 35px; /* 原10px 28px ×1.25 */
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    border-radius: 125px; /* 原100px ×1.25 */
    font-size: 17.5px; /* 原14px ×1.25 */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: var(--shadow-card);
}

.cert-tab:hover {
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--text-main);
}

[data-theme="dark"] .cert-tab:hover {
    border-color: rgba(96, 165, 250, 0.3);
}

.cert-tab.active {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 18.75px rgba(37, 99, 235, 0.3); /* 原4px 15px ×1.25 */
}

[data-theme="dark"] .cert-tab.active {
    box-shadow: 0 5px 18.75px rgba(96, 165, 250, 0.3);
}

/* 每行4张 */
.cert-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* 原24px ×1.25 */
}

.cert-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px; /* 原16px ×1.25 */
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease forwards;
    box-shadow: var(--shadow-card);
}

.cert-item:hover {
    transform: translateY(-7.5px); /* 原6px ×1.25 */
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 25px rgba(37, 99, 235, 0.08); /* 原12px 40px ×1.25 */
}

[data-theme="dark"] .cert-item:hover {
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(96, 165, 250, 0.08);
}

.cert-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f0f0f0;
}

[data-theme="dark"] .cert-image-wrapper {
    background: #1a1a2e;
}

.cert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cert-item:hover .cert-image-wrapper img {
    transform: scale(1.05);
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: var(--cert-overlay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.cert-item:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay-content {
    text-align: center;
    color: #fff;
}

.cert-overlay-content i {
    font-size: 45px; /* 原36px ×1.25 */
    color: var(--primary);
    margin-bottom: 10px; /* 原8px ×1.25 */
    display: block;
}

[data-theme="dark"] .cert-overlay-content i {
    color: #60a5fa;
}

.cert-overlay-content span {
    font-size: 16.25px; /* 原13px ×1.25 */
    color: rgba(255, 255, 255, 0.8);
}

.cert-info {
    padding: 20px 22.5px; /* 原16px 18px ×1.25 */
    text-align: center;
}

.cert-info h4 {
    font-size: 16px; /* 原14px ×1.25 */
    color: var(--text-main);
    margin-bottom: 5px; /* 原4px ×1.25 */
    font-weight: 600;
    transition: color 0.3s ease;
}

.cert-info p {
    font-size: 14px; /* 原11px ×1.25 */
    color: var(--text-muted);
    line-height: 1.5;
}

/* 占位证书卡片 */
.cert-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, rgba(124,58,237,0.06) 100%);
    border: 1px dashed rgba(37,99,235,0.2);
}

[data-theme="dark"] .cert-placeholder {
    background: linear-gradient(135deg, rgba(96,165,250,0.05) 0%, rgba(167,139,250,0.08) 100%);
    border-color: rgba(96,165,250,0.2);
}

.cert-placeholder-content {
    text-align: center;
    color: var(--primary);
    padding: 25px; /* 原20px ×1.25 */
}

.cert-placeholder-content i {
    font-size: 60px; /* 原48px ×1.25 */
    display: block;
    margin-bottom: 15px; /* 原12px ×1.25 */
    opacity: 0.7;
}

.cert-placeholder-content span {
    display: block;
    font-size: 18.75px; /* 原15px ×1.25 */
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 7.5px; /* 原6px ×1.25 */
}

.cert-placeholder-content small {
    font-size: 15px; /* 原12px ×1.25 */
    color: var(--text-muted);
}

/* Tab 计数徽标 */
.tab-count {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary);
    font-size: 13.75px; /* 原11px ×1.25 */
    padding: 1.25px 10px; /* 原1px 8px ×1.25 */
    border-radius: 12.5px; /* 原10px ×1.25 */
    margin-left: 5px; /* 原4px ×1.25 */
}

[data-theme="dark"] .tab-count {
    background: rgba(96, 165, 250, 0.15);
}

.cert-tab.active .tab-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* 证书模态框 */
.cert-modal {
    position: fixed;
    inset: 0;
    top: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 10px;
}

.cert-modal.active {
    opacity: 1;
    pointer-events: all;
}

.cert-modal-overlay {
    position: absolute;
    inset: 0;
    background: var(--modal-overlay);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cert-modal-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    animation: modalZoomIn 0.3s ease;
}

@keyframes modalZoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.cert-modal-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.5); /* 原20px 60px ×1.25 */
}

.cert-modal-info {
    text-align: center;
    margin-top: 20px; /* 原16px ×1.25 */
    color: #fff;
    font-size: 18.75px; /* 原15px ×1.25 */
}

.cert-modal-close {
    position: absolute;
    top: -50px; /* 原-50px ×1.25 */
    right: -50px;
    width: 40px; /* 原40px ×1.25 */
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22.5px; /* 原18px ×1.25 */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.cert-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cert-item.hidden {
    display: none;
}

/* ========================================
   加入我们
   ======================================== */
.jobs-table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px; /* 原20px ×1.25 */
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

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

.jobs-table thead {
    background: rgba(37, 99, 235, 0.05);
}

[data-theme="dark"] .jobs-table thead {
    background: rgba(96, 165, 250, 0.05);
}

.jobs-table th {
    padding: 25px 30px; /* 原20px 24px ×1.25 */
    text-align: left;
    font-size: 16.25px; /* 原13px ×1.25 */
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1.25px; /* 原1px ×1.25 */
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

.jobs-table td {
    padding: 25px 30px; /* 原20px 24px ×1.25 */
    font-size: 17.5px; /* 原14px ×1.25 */
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.jobs-table tbody tr:hover td {
    background: rgba(37, 99, 235, 0.03);
}

[data-theme="dark"] .jobs-table tbody tr:hover td {
    background: rgba(96, 165, 250, 0.03);
}

.jobs-table tbody tr:last-child td {
    border-bottom: none;
}

.jobs-table td i {
    color: var(--primary);
    margin-right: 10px; /* 原8px ×1.25 */
}

.apply-btn {
    display: inline-block;
    padding: 10px 25px; /* 原8px 20px ×1.25 */
    background: var(--gradient-1);
    color: #fff;
    border-radius: 10px; /* 原8px ×1.25 */
    font-size: 16.25px; /* 原13px ×1.25 */
    font-weight: 600;
    transition: all 0.3s;
}

.apply-btn:hover {
    box-shadow: 0 5px 18.75px rgba(37, 99, 235, 0.3); /* 原4px 15px ×1.25 */
    transform: translateY(-1.25px); /* 原-1px ×1.25 */
}

[data-theme="dark"] .apply-btn:hover {
    box-shadow: 0 5px 18.75px rgba(96, 165, 250, 0.3);
}

/* ========================================
   联系我们
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px; /* 原48px ×1.25 */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px; /* 原24px ×1.25 */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px; /* 原20px ×1.25 */
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px; /* 原16px ×1.25 */
    padding: 30px; /* 原24px ×1.25 */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.contact-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(5px); /* 原4px ×1.25 */
}

[data-theme="dark"] .contact-item:hover {
    border-color: rgba(96, 165, 250, 0.2);
}

.contact-icon {
    width: 65px; /* 原52px ×1.25 */
    height: 65px;
    min-width: 65px;
    border-radius: 17.5px; /* 原14px ×1.25 */
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px; /* 原20px ×1.25 */
    color: var(--primary);
}

.contact-item h4 {
    font-size: 17.5px; /* 原14px ×1.25 */
    color: var(--text-muted);
    margin-bottom: 5px; /* 原4px ×1.25 */
}

.contact-item p {
    font-size: 20px; /* 原16px ×1.25 */
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px; /* 原20px ×1.25 */
    padding: 50px; /* 原40px ×1.25 */
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; /* 原16px ×1.25 */
    margin-bottom: 20px; /* 原16px ×1.25 */
}

.form-group {
    margin-bottom: 20px; /* 原16px ×1.25 */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 17.5px 25px; /* 原14px 20px ×1.25 */
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 15px; /* 原12px ×1.25 */
    font-size: 17.5px; /* 原14px ×1.25 */
    color: var(--text-main);
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.02);
    box-shadow: 0 0 0 3.75px rgba(37, 99, 235, 0.1); /* 原3px ×1.25 */
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    background: rgba(96, 165, 250, 0.03);
    box-shadow: 0 0 0 3.75px rgba(96, 165, 250, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    position: relative;
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px; /* 原64px 0 24px ×1.25 */
    z-index: 1;
    transition: background 0.3s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px; /* 原48px ×1.25 */
    margin-bottom: 60px; /* 原48px ×1.25 */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px; /* 原12px ×1.25 */
    font-size: 28px; /* 原22px ×1.25 */
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px; /* 原16px ×1.25 */
    transition: color 0.3s ease;
}

.footer-logo i {
    font-size: 35px; /* 原28px ×1.25 */
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 17.5px; /* 原14px ×1.25 */
    line-height: 1.8;
    margin-bottom: 25px; /* 原20px ×1.25 */
}

.footer-social {
    display: flex;
    gap: 15px; /* 原12px ×1.25 */
}

.footer-social a {
    width: 50px; /* 原40px ×1.25 */
    height: 50px;
    border-radius: 12.5px; /* 原10px ×1.25 */
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* 原16px ×1.25 */
    color: var(--text-muted);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.footer-social a:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-2.5px); /* 原-2px ×1.25 */
}

.footer-links h4 {
    font-size: 18.75px; /* 原15px ×1.25 */
    color: var(--text-main);
    margin-bottom: 25px; /* 原20px ×1.25 */
    transition: color 0.3s ease;
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: 17.5px; /* 原14px ×1.25 */
    color: var(--text-muted);
    margin-bottom: 15px; /* 原12px ×1.25 */
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links p i {
    color: var(--primary);
    margin-right: 10px; /* 原8px ×1.25 */
    width: 20px; /* 原16px ×1.25 */
}

.footer-bottom {
    text-align: center;
    padding-top: 30px; /* 原24px ×1.25 */
    border-top: 1px solid var(--border);
    font-size: 16.25px; /* 原13px ×1.25 */
    color: var(--text-muted);
}

/* ========================================
   动画
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(37.5px); /* 原30px ×1.25 */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12.5px); /* 原-10px ×1.25 */
    }
    60% {
        transform: translateX(-50%) translateY(-6.25px); /* 原-5px ×1.25 */
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px); /* 原-20px ×1.25 */
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* 滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(50px); /* 原40px ×1.25 */
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   响应式设计（断点同比放大1.25倍）
   ======================================== */
@media (max-width: 1280px) { /* 原1024px ×1.25 */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .data-banner {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .container {
        max-width: 100%;
    }

    .nav-container {
        max-width: 100%;
    }
}

@media (max-width: 960px) { /* 原768px ×1.25 */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--nav-bg-scrolled);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 25px; /* 原20px ×1.25 */
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 40px; /* 原32px ×1.25 */
    }

    .stat-number {
        font-size: 40px; /* 原32px ×1.25 */
    }

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

    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cert-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; /* 原16px ×1.25 */
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* 原32px ×1.25 */
    }

    .jobs-table {
        font-size: 15px; /* 原12px ×1.25 */
    }

    .jobs-table th,
    .jobs-table td {
        padding: 15px 17.5px; /* 原12px 14px ×1.25 */
    }

    .section {
        padding: 75px 0; /* 原60px ×1.25 */
    }

    .about-card {
        padding: 40px 30px; /* 原32px 24px ×1.25 */
    }
}

@media (max-width: 600px) { /* 原480px ×1.25 */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        gap: 25px; /* 原20px ×1.25 */
    }

    .products-carousel {
        grid-template-columns: 1fr;
    }

    .data-banner {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
    }

    .cert-gallery {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 45px; /* 小屏幕下适当缩小，避免溢出 */
    }

    .hero-desc {
        font-size: 20px;
    }
}