/* 企业管理软件官网风 CSS */
:root {
    --primary-color: #1677FF; /* 企业蓝 */
    --primary-hover: #0958D9;
    --secondary-color: #0A1930; /* 深邃藏青，用于强调企业感 */
    --text-main: #1D2129;
    --text-sub: #4E5969;
    --text-light: #86909C;
    --bg-body: #F7F8FA;
    --bg-white: #FFFFFF;
    --border-color: #E5E6EB;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 24px rgba(22, 119, 255, 0.12);
    --transition: all 0.3s ease-in-out;
}

* {
    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.5715;
    background-color: var(--bg-body);
    -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: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 导航栏 - 严谨企业风 */
.corp-nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
    padding: 20px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

/* Hero 首屏 - 稳重商务 */
.corp-hero {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    background-image: linear-gradient(145deg, #0A1930 0%, #112A4F 100%);
}

.corp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=') repeat;
    pointer-events: none;
}

.page-hero {
    padding: 60px 0;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 16px;
}

.hero-img-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-sm);
    display: block;
}

/* 数据背书区 */
.corp-data {
    padding: 48px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.data-item {
    position: relative;
}

.data-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--border-color);
}

.data-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: Arial, sans-serif;
}

.data-label {
    font-size: 14px;
    color: var(--text-sub);
}

/* 通用区块标题 */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-sub);
}

/* 核心功能区 */
.corp-features {
    padding: 80px 0;
    background-color: var(--bg-body);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.f-icon {
    width: 48px;
    height: 48px;
    background-color: #F0F5FF;
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.6;
}

/* 行业解决方案区 */
.corp-solutions {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.solution-card:hover {
    box-shadow: var(--shadow-card);
}

.s-img {
    height: 180px;
    overflow: hidden;
}

.s-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .s-img img {
    transform: scale(1.02);
}

.s-content {
    padding: 24px;
    background-color: var(--bg-white);
}

.s-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.s-content p {
    font-size: 14px;
    color: var(--text-sub);
}

/* 底部 CTA */
.corp-cta {
    padding: 64px 0;
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
}

.corp-cta h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.corp-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-white {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #F0F5FF;
}

.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;
}

/* 下载页专用 */
.download-section {
    padding: 60px 0 80px;
    background-color: var(--bg-body);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dl-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
}

.dl-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.dl-card.highlight {
    border-top: 4px solid var(--primary-color);
}

.d-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.dl-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.dl-card p {
    color: var(--text-sub);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 42px;
}

/* 帮助中心专用 */
.faq-section {
    padding: 60px 0 80px;
    background-color: var(--bg-body);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
}

/* 页脚 */
.corp-footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #ffffff;
}

.footer-links a {
    display: block;
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 900px) {
    .hero-grid, .data-grid, .features-grid, .solutions-grid, .download-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .data-item:not(:last-child)::after { display: none; }
    .nav-menu { display: none; }
    .hero-actions, .cta-actions { flex-direction: column; }
}