/* 科技企业蓝白风，可信专业 CSS */
:root {
    --primary: #0052D9; /* 科技企业蓝 */
    --primary-hover: #003CAB;
    --text-main: #1D2129; /* 深色正文 */
    --text-light: #4E5969; /* 浅色辅助文本 */
    --bg-light: #F7F8FA; /* 极简灰白背景 */
    --bg-blue-light: #F0F5FF; /* 极浅蓝背景 */
    --border-color: #E5E6EB;
    --radius: 6px; /* 专业圆角 */
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 24px rgba(0, 82, 217, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    color: var(--text-main);
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 16px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 82, 217, 0.3);
}

.btn-outline {
    background-color: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--bg-blue-light);
}

.btn-white {
    background-color: #ffffff;
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--bg-light);
}

.btn-outline-white {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Navbar */
.corp-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background-color: var(--primary);
    border-radius: 6px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    color: var(--text-light);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
}

/* Hero Section */
.corp-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-blue-light) 0%, #ffffff 100%);
}

.page-hero {
    padding: 60px 0;
    background: var(--bg-blue-light);
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 82, 217, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 82, 217, 0.08);
    border: 1px solid rgba(0, 82, 217, 0.1);
}

/* Data Section */
.corp-data {
    padding: 60px 0;
    background-color: #ffffff;
    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: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

.data-label {
    font-size: 14px;
    color: var(--text-light);
}

/* Features */
.corp-features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    padding: 40px 32px;
    background-color: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.f-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-blue-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Solutions */
.corp-solutions {
    padding: 100px 0;
    background-color: #ffffff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.solution-card:hover {
    box-shadow: var(--shadow);
}

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.s-content {
    padding: 32px;
}

.s-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.s-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA */
.corp-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-inner {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, #0052D9 0%, #003CAB 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 82, 217, 0.2);
}

.cta-inner h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Download Page */
.download-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.download-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    background-color: #ffffff;
}

.d-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.download-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.download-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 32px;
    min-height: 48px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-weight: 600;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.corp-footer {
    background-color: #0A1629; /* 深蓝色企业底部 */
    color: #ffffff;
    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: 16px;
    font-size: 14px;
    color: #86909C;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #ffffff;
}

.footer-links a {
    display: block;
    color: #86909C;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #86909C;
}

@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-btns, .cta-actions { flex-direction: column; }
}