/* 蓝色科技渐变，突出多端下载 CSS */
:root {
    --tech-blue-start: #0033FF;
    --tech-blue-end: #00C3FF;
    --tech-dark: #0A1629;
    --tech-card-bg: #FFFFFF;
    --tech-bg-light: #F2F7FF;
    --text-main: #1D2129;
    --text-sub: #4E5969;
    --text-light: #86909C;
    --border-color: #E5E6EB;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 4px 10px rgba(0, 51, 255, 0.05);
    --shadow-md: 0 10px 24px rgba(0, 51, 255, 0.12);
    --shadow-hover: 0 16px 32px rgba(0, 51, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--tech-bg-light);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--tech-blue-start), var(--tech-blue-end));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 51, 255, 0.3);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(0, 51, 255, 0.4);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--tech-blue-end);
    color: var(--tech-blue-start);
}

.btn-outline:hover {
    background-color: rgba(0, 195, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background-color: #ffffff;
    color: var(--tech-blue-start);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background-color: var(--tech-bg-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: rgba(255,255,255,0.6);
    color: #ffffff;
}

.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 导航栏 */
.tech-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 51, 255, 0.05);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--tech-blue-start), var(--tech-blue-end));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--tech-dark);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    color: var(--text-sub);
    font-weight: 500;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--tech-blue-start);
}

/* Hero 首屏 - 蓝色科技渐变 */
.tech-hero {
    background: linear-gradient(135deg, var(--tech-blue-start) 0%, var(--tech-blue-end) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    gap: 20px;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-meta span::before {
    content: '✓';
    color: #00FFD1;
    font-weight: bold;
}

.hero-visual .hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(0, 51, 255, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* 数据背书区 */
.tech-data {
    padding: 48px 0;
    background-color: var(--tech-card-bg);
    border-bottom: 1px solid var(--border-color);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.data-num {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--tech-blue-start), var(--tech-blue-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.data-label {
    font-size: 15px;
    color: var(--text-sub);
    font-weight: 500;
}

/* 通用区块标题 */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--tech-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-sub);
}

/* 核心功能区 */
.tech-features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: var(--tech-card-bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 51, 255, 0.03);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: rgba(0, 195, 255, 0.3);
}

.f-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.1) 0%, rgba(0, 195, 255, 0.1) 100%);
    color: var(--tech-blue-start);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--tech-dark);
}

.feature-card p {
    color: var(--text-sub);
    font-size: 15px;
    line-height: 1.6;
}

/* 行业解决方案区 */
.tech-solutions {
    padding: 100px 0;
    background-color: var(--tech-card-bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-card {
    background-color: var(--tech-bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.solution-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--tech-blue-end);
}

.s-img {
    height: 200px;
    overflow: hidden;
}

.s-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .s-img img {
    transform: scale(1.05);
}

.s-content {
    padding: 32px;
}

.s-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--tech-dark);
}

.s-content p {
    font-size: 15px;
    color: var(--text-sub);
}

/* 底部 CTA */
.tech-cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--tech-blue-start) 0%, var(--tech-blue-end) 100%);
    color: #ffffff;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 51, 255, 0.2);
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 下载页专用 - 突出多端下载 */
.download-section {
    padding: 80px 0 120px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dl-card {
    background-color: var(--tech-card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.dl-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--tech-blue-end);
    transform: translateY(-5px);
}

.dl-card.highlight {
    border: 2px solid var(--tech-blue-start);
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--tech-bg-light) 100%);
}

.dl-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--tech-blue-start), var(--tech-blue-end));
    color: #fff;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 51, 255, 0.2);
}

.d-icon {
    font-size: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--tech-blue-start), var(--tech-blue-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dl-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--tech-dark);
}

.dl-card p {
    color: var(--text-sub);
    font-size: 15px;
    margin-bottom: 32px;
    min-height: 48px;
}

/* 帮助中心专用 */
.faq-section {
    padding: 80px 0 120px;
    background-color: var(--tech-card-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--tech-bg-light);
    border: 1px solid rgba(0, 51, 255, 0.05);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--tech-blue-end);
    background-color: var(--tech-card-bg);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--tech-dark);
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.7;
}

/* 页脚 */
.tech-footer {
    background-color: var(--tech-dark);
    color: var(--text-light);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #ffffff;
}

.footer-links a {
    display: block;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-links a:hover {
    color: var(--tech-blue-end);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 900px) {
    .hero-grid, .data-grid, .features-grid, .solutions-grid, .download-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .nav-menu { display: none; }
    .hero-actions, .cta-actions { flex-direction: column; }
}