/*
Theme Name: Canespuk Sci-Fi
Theme URI: https://canespuk.com
Author: Canespuk Factory
Author URI: https://canespuk.com
Description: 科幻赛博朋克风格工业空调WordPress主题，霓虹光效、科技网格、未来感设计，专为高端制造企业打造。
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: canespuk
Domain Path: /languages
Tags: sci-fi, cyberpunk, industrial, technology, futuristic, dark, neon
*/

/* ===== 基础重置与变量 - 科幻风格 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #0a0e1a;
    --bg-dark: #0f1629;
    --bg-card: rgba(15, 22, 41, 0.8);
    --primary: #00d4ff;
    --primary-glow: rgba(0, 212, 255, 0.4);
    --secondary: #a855f7;
    --secondary-glow: rgba(168, 85, 247, 0.3);
    --accent: #22d3ee;
    --accent-cyan: #06b6d4;
    --text-bright: #f0f9ff;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-glow: rgba(0, 212, 255, 0.25);
    --border-subtle: rgba(148, 163, 184, 0.1);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
    --shadow-neon-lg: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1280px;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --section-padding: 120px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

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

a:hover {
    color: var(--accent);
    text-shadow: 0 0 8px var(--primary-glow);
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-bright);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px var(--primary-glow);
}

.cyber-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 顶部导航 ===== */
.site-header {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

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

.site-branding {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 0 15px var(--primary-glow);
}

.site-description {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 48px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-navigation a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.03em;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--text-bright);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.language-switcher {
    position: relative;
}

.lang-toggle {
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px 14px;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.btn-quote {
    font-size: 13px;
    font-weight: 600;
    padding: 10px 28px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-quote:hover {
    background: var(--primary);
    color: var(--bg-deep);
    box-shadow: var(--shadow-neon);
    transform: translateY(-1px);
}

/* ===== 通用按钮 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    color: var(--bg-deep);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--shadow-neon-lg);
    transform: translateY(-2px);
    color: var(--bg-deep);
}

.btn-outline {
    background: transparent;
    color: var(--text-bright);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--text-bright);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    color: var(--text-bright);
}

/* ===== Hero 首屏 ===== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--bg-deep);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 10s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 100px 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    padding: 8px 20px;
    border: 1px solid var(--border-glow);
    margin-bottom: 32px;
    position: relative;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(44px, 6.5vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-title .line-1 {
    color: var(--text-bright);
    display: block;
}

.hero-title .line-2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 44px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== 通用区块 ===== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--bg-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: var(--text-bright);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
    position: relative;
}

.section-header-light .section-eyebrow {
    color: var(--primary);
}

.section-header-light .section-title {
    color: var(--text-bright);
}

.section-header-light .section-subtitle {
    color: var(--text-secondary);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section::before,
.section::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-glow);
    opacity: 0.5;
}

.section::before {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.section::after {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

/* ===== 核心优势 ===== */
.section-advantages {
    background: var(--bg-deep);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-item {
    background: var(--bg-card);
    padding: 40px 32px;
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.advantage-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-neon), var(--shadow-card);
}

.advantage-item:hover::before,
.advantage-item:hover::after {
    opacity: 1;
}

.advantage-num {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.advantage-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-bright);
}

.advantage-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== 产品展示 ===== */
.section-products {
    background: var(--bg-dark);
}

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

.product-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.product-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-neon-lg), var(--shadow-card);
}

.product-item:hover::before {
    transform: scaleX(1);
}

.product-visual {
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}

.product-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.product-code {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 6px;
    position: relative;
    z-index: 1;
    opacity: 0.3;
    transition: var(--transition);
    text-shadow: 0 0 30px var(--primary-glow);
}

.product-item:hover .product-code {
    opacity: 0.8;
    transform: scale(1.15);
}

.product-meta {
    padding: 32px 28px;
}

.product-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    padding: 4px 10px;
    border: 1px solid var(--border-glow);
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 12px;
    line-height: 1.35;
}

.product-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.product-link:hover {
    gap: 14px;
    text-shadow: 0 0 8px var(--primary-glow);
}

/* ===== 关于工厂 ===== */
.section-about {
    background: var(--bg-deep);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-box {
    width: 100%;
    height: 520px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid var(--border-glow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-image-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--primary);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    opacity: 0.6;
}

.about-stats-box {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--bg-card);
    padding: 32px 36px;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    box-shadow: var(--shadow-card);
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content .section-eyebrow {
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-bright);
}

.about-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-about {
    margin-top: 16px;
}

/* ===== CTA 区块 ===== */
.section-cta {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.section-eyebrow-light {
    color: var(--primary);
}

.cta-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
    line-height: 1.25;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ===== 页脚 ===== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-secondary);
    padding-top: 80px;
    position: relative;
    border-top: 1px solid var(--border-glow);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .site-title {
    color: var(--text-bright);
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.footer-brand .site-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 13px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

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

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

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== 页面内容样式 ===== */
.page-content {
    padding: 80px 0;
}

.page-header {
    background: var(--bg-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glow);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--text-bright);
    font-size: 42px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
}

.entry-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-bright);
}

.entry-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--text-bright);
}

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

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

.entry-content li {
    margin-bottom: 8px;
}

.product-archive {
    padding: 80px 0;
}

.product-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

/* ===== 分页 ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination .page-numbers {
    padding: 10px 18px;
    border: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.pagination .page-numbers:hover,
.pagination .current {
    background: var(--primary);
    color: var(--bg-deep);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    .container { padding: 0 24px; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid, .product-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .about-stats-box { right: 20px; bottom: -30px; padding: 28px 32px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .main-navigation ul { gap: 24px; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    .hero-section { min-height: auto; padding: 80px 0; }
    .hero-content { padding: 40px 0; }
    .hero-title { font-size: 36px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-scroll-indicator { display: none; }
    .advantages-grid { grid-template-columns: 1fr; }
    .products-grid, .product-archive-grid { grid-template-columns: 1fr; }
    .about-image-box { height: 360px; }
    .about-stats-box { position: static; margin-top: 24px; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px 20px; }
    .stat-number { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .main-navigation { display: none; }
    .header-right .btn-quote { display: none; }
    .section-header { margin-bottom: 48px; }
    .section-title { font-size: 28px; }
    .section::before, .section::after { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 30px; }
    .about-stats-box { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== WordPress 必备样式 ===== */
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }
.wp-caption { max-width: 100%; margin-bottom: 24px; }
.wp-caption-text { font-size: 13px; color: var(--text-secondary); text-align: center; padding-top: 8px; }
.sticky { position: relative; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
