:root {
    --primary: #0078D7; /* 经典桌面软件蓝 */
    --primary-hover: #005A9E;
    --text-dark: #202124;
    --text-gray: #5F6368;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border: #E8EAED;
    --radius: 8px;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu a {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-outline {
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--text-gray);
    background: var(--bg-light);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-sm { padding: 6px 16px; font-size: 13px; }
.btn-large { padding: 12px 32px; font-size: 15px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.page-hero {
    padding: 60px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #E8F0FE;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-subtext {
    font-size: 13px !important;
    color: #9AA0A6 !important;
    margin-bottom: 0 !important;
}

/* App Window Mockup (桌面端软件展示风) */
.hero-visual {
    flex: 1;
}

.app-window {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
}

.app-header {
    background: #F1F3F4;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DADCE0;
}

.app-window img {
    width: 100%;
    display: block;
}

/* Data Section */
.data-section {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.data-card {
    padding: 16px;
}

.data-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.data-desc {
    color: var(--text-gray);
    font-size: 14px;
}

/* Features */
.features-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
}

.f-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Solutions */
.solutions-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.s-content {
    padding: 20px;
}

.s-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.s-content p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Download Page Grid */
.download-section {
    padding: 60px 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 40px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.d-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.download-card p {
    color: var(--text-gray);
    margin-bottom: 24px;
    min-height: 42px;
    font-size: 14px;
}

/* Help Section */
.help-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.cta-inner h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-inner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-btns .btn-primary {
    background: #fff;
    color: var(--primary);
}

.cta-btns .btn-primary:hover {
    background: var(--bg-light);
}

/* Footer */
.footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 13px;
}

.footer-links h4 {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: #9AA0A6;
    font-size: 12px;
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .nav-menu {
        display: none;
    }
    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid, .solutions-grid, .download-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-btns {
        flex-direction: column;
    }
}