/* ========================================
   天津基石新材料有限公司 - 网站样式
   Cornerstone New Materials Co., Ltd.
   风格：专业稳重 · 科技感
   ======================================== */

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主色调 - 深蓝专业 */
    --primary-color: #0f2744;
    --primary-light: #1a365d;
    --primary-dark: #0a1f35;
    
    /* 强调色 - 科技蓝 */
    --accent-color: #2c5282;
    --accent-light: #4299e1;
    
    /* 辅助色 */
    --secondary-color: #4a5568;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;
    
    /* 背景色 */
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-lighter: #edf2f7;
    --bg-dark: #1a202c;
    
    /* 边框 */
    --border-color: #e2e8f0;
    --border-light: #cbd5e0;
    
    /* 间距 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* 阴影 */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* 容器 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ========================================
   顶部联系栏
   ======================================== */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-lg);
    align-items: center;
    flex-wrap: wrap;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e0;
}

/* 语言切换器 */
.lang-switch {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

.lang-btn {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.lang-btn.active {
    color: var(--text-white);
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* 语言显示/隐藏 — controlled by inline style in HTML pages, not CSS */

/* ========================================
   导航栏
   ======================================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    min-height: 72px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    height: 2px;
    background: var(--accent-color);
}

/* 移动端导航切换 */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ========================================
   按钮
   ======================================== */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.btn-white:hover {
    background: var(--bg-light);
}

.btn-link {
    background: transparent;
    color: var(--accent-color);
    padding: var(--spacing-xs) 0;
}

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

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

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

/* ========================================
   横幅轮播
   ======================================== */
.hero-slider {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide {
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: var(--spacing-2xl);
    color: white;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* ========================================
   章节通用样式
   ======================================== */
section {
    padding: var(--spacing-2xl) 0;
}

.section-subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title-left {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-title-center {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: var(--spacing-sm) auto 0;
}

/* ========================================
   关于我们摘要
   ======================================== */
.about-preview {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-color);
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image .image-placeholder span {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.about-image .image-placeholder p {
    color: var(--text-muted);
}

/* ========================================
   产品区块
   ======================================== */
.products-section {
    background: var(--bg-light);
}

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.product-category-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.product-category-card h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.category-en {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.category-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.category-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.category-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.category-features li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ========================================
   定制服务
   ======================================== */
.custom-section {
    background: var(--bg-white);
}

.custom-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    color: white;
}

.custom-icon {
    font-size: 3rem;
}

.custom-content {
    flex: 1;
}

.custom-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.custom-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.custom-content strong {
    color: white;
}

/* ========================================
   应用领域
   ======================================== */
.applications-section {
    background: var(--bg-light);
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
}

.application-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.application-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.application-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========================================
   优势特点
   ======================================== */
.features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.5;
    line-height: 1;
}

.feature-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   CTA 区块
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* ========================================
   页脚
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-muted);
}

.footer-top {
    padding: var(--spacing-2xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-contact {
    margin-top: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
}

/* ========================================
   页面标题
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.page-subtitle {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ========================================
   产品导航标签
   ======================================== */
.product-nav-section {
    background: var(--bg-light);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 72px;
    z-index: 999;
}

.product-nav-tabs {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.nav-tab {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-tab:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.nav-tab.active {
    background: var(--accent-color);
    color: white;
}

/* ========================================
   三大类目标签
   ======================================== */
.category-tabs-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
}

.category-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
}

.cat-tab {
    padding: 0.875rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
    position: relative;
}

.cat-tab:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.cat-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    font-weight: 600;
}

.category-section {
    display: none;
}

.category-section.active {
    display: block;
}

.cat-header {
    text-align: center;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.cat-header h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.cat-en {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   产品详情卡片
   ======================================== */
.products-detail-section {
    background: var(--bg-white);
    padding: var(--spacing-2xl) 0;
}

.product-detail-card {
    display: none;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-detail-card.active {
    display: block;
}

.product-detail-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.product-title-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.product-category-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    align-self: flex-start;
}

.product-detail-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.product-en {
    font-style: italic;
    opacity: 0.9;
    font-size: 1rem;
}

.product-detail-body {
    padding: var(--spacing-xl);
}

.product-section {
    margin-bottom: var(--spacing-lg);
}

.product-section:last-child {
    margin-bottom: 0;
}

.product-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--border-color);
}

.product-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 规格列表 */
.specs-list {
    list-style: none;
}

.specs-list li {
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    line-height: 1.6;
}

/* 结构网格 */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.structure-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.structure-type {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
}

.structure-item ul {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.structure-item li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.structure-item li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* 规格表格 */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

.specs-table th {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(44, 82, 130, 0.08);
    text-align: left;
    white-space: nowrap;
}

.specs-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
    white-space: nowrap;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(44, 82, 130, 0.05);
}

.specs-table td:last-child {
    color: var(--text-secondary);
}

/* 应用标签 */
.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.app-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

/* ========================================
   定制 CTA
   ======================================== */
.custom-cta-section {
    background: var(--bg-light);
    padding: var(--spacing-2xl) 0;
}

.custom-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    color: white;
}

.custom-cta-icon {
    font-size: 3rem;
}

.custom-cta-content {
    flex: 1;
}

.custom-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.custom-cta-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.custom-cta-content strong {
    color: white;
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .custom-box,
    .custom-cta-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    
    .custom-box,
    .custom-cta-box {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title-left,
    .section-title-center {
        font-size: 1.5rem;
    }
    
    .product-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .product-title-group {
        align-items: center;
    }
    
    .product-nav-tabs {
        justify-content: center;
    }
    
    .custom-cta-box,
    .custom-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 400px;
    }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-content {
        padding: var(--spacing-lg);
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .page-header h2 {
        font-size: 1.8rem;
    }
    
    .product-detail-header h3 {
        font-size: 1.4rem;
    }
    
    .specs-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.875rem;
    }
}

/* ========================================
   高级企业级样式
   ======================================== */

/* 路径导航 */
.breadcrumb {
    display: flex;
    padding: var(--spacing-md) 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb span {
    margin: 0 var(--spacing-xs);
}

/* 加载动画 */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: var(--spacing-xl) auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 打字效果 */
.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color); }
}

/* 平滑过渡效果 */
.transition {
    transition: all 0.3s ease;
}

/* 滚动动画 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 产品网格增强 */
.product-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card-enhanced {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* 视频背景 */
.video-header {
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
}

/* 分割线 */
.divider {
    height: 1px;
    background: var(--border-color);
    margin: var(--spacing-xl) 0;
}

.divider-thick {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* 图片背景 */
.image-bg {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* 卡片嵌入 */
.embed-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* 状态指示器 */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: var(--spacing-xs);
}

.status-indicator.success { background: var(--success-color); }
.status-indicator.warning { background: var(--warning-color); }
.status-indicator.error { background: #e53e3e; }
.status-indicator.info { background: var(--accent-color); }

/* 评分星星 */
.stars {
    color: var(--warning-color);
}

/* 进度条 */
.progress {
    width: 100%;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

/* 胶囊式标签 */
.capsule-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.capsule-tag-primary {
    background: rgba(44, 82, 130, 0.1);
    color: var(--primary-color);
}

.capsule-tag-accent {
    background: rgba(49, 130, 206, 0.1);
    color: var(--accent-color);
}

/* 图标列表 */
.icon-list {
    list-style: none;
}

.icon-list li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.icon-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* 价格卡片 */
.price-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: var(--spacing-md) 0;
}

/* 团队卡片 */
.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-card .team-image {
    height: 200px;
    overflow: hidden;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* 服务卡片 */
.service-card {
    text-align: center;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.service-card .service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

/* 客户评价 */
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-card .testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.testimonial-card .testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* 表格样式增强 */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

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

/* 魔术点击效果 */
.magic-link {
    position: relative;
    overflow: hidden;
}

.magic-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.magic-link:hover::after {
    transform: scaleX(1);
}

/* 下拉菜单 */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: var(--bg-white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    z-index: 100;
    padding: var(--spacing-xs);
}

.dropdown-content a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
}

.dropdown-content a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* 分享按钮 */
.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* 快速链接 */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.quick-link {
    padding: var(--spacing-xs) var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

/* 锚点平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* ========================================
   关于我们 - 优势卡片
   ======================================== */
.advantage-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.advantage-num {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.advantage-num.accent { background: var(--accent-color); }
.advantage-num.primary { background: var(--primary-color); }
.advantage-num.green { background: #2d6a4f; }
.advantage-num.purple { background: #7c3aed; }

.advantage-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advantage-content p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-card {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ========================================
   关于我们 - 装饰标题 & 正文
   ======================================== */
.section-title-decorated {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}
.body-text {
    font-size: 1.05rem;
    line-height: 2.2;
    margin-bottom: 1.2rem;
}
/* ========================================
   页面结构
   ======================================== */
.bg-light {
    background: var(--bg-light);
}

.section {
    padding: 4rem 0;
}
@media (max-width: 768px) {
    .section {
        padding: 2.5rem 0;
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0 2rem;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s;
}
