/* ========== 基础重置与变量 ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-deep: #1a365d;
    --primary: #2b6cb0;
    --primary-light: #2a4365;
    --text-dark: #2c3e50;
    --text-gray: #4a5568;
    --text-light: #718096;
    --border-light: #e2e8f0;
    --bg-page: #f4f7fa;
    --bg-white: #ffffff;
    --bg-dark-footer: #1a202c;
    --footer-text: #a0aec0;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
    --shadow-card: 0 10px 25px -5px rgba(0,0,0,0.03), 0 8px 10px -6px rgba(0,0,0,0.02);
    --radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 导航栏 ========== */
header {
    background: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0;
}

.logo-area {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-deep);
    font-size: 22px;
    font-weight: 700;
    gap: 10px;
    white-space: nowrap;
}

.logo-link img {
    vertical-align: middle;
}

.menu-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-area a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.menu-area a:hover,
.menu-area a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ========== 横幅区 ========== */
.banner {
    background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.banner h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e2e8f0;
    opacity: 0.95;
}

.img-placeholder {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    max-height: 380px;
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.25);
    border-radius: var(--radius);
    margin: 0 auto;
}

/* ========== 视频区域 ========== */
.video-section {
    background: var(--bg-white);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.video-section h2 {
    color: var(--primary-deep);
    font-size: 24px;
    margin-bottom: 10px;
}

.video-section p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
}

.video-container {
    max-width: 750px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.07);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== 主内容区公共样式 ========== */
main {
    padding: 60px 0;
}

.grid-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 26px;
    color: var(--primary-deep);
    margin-bottom: 30px;
    padding-left: 16px;
    border-left: 5px solid var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

.intro-text {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-size: 16px;
    color: var(--text-dark);
}

.intro-text p {
    margin-bottom: 18px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* ========== 表格 ========== */
.features-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    font-size: 15px;
}

.features-table caption {
    margin-top: 10px;
}

.features-table th {
    background: var(--primary);
    color: #fff;
    text-align: left;
    padding: 16px 20px;
    font-weight: 600;
}

.features-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
}

.features-table tr:last-child td {
    border-bottom: none;
}

.features-table tbody tr:nth-child(even) {
    background: #f7fafc;
}

/* ========== 核心场景卡片（传统表格布局降级为flex） ========== */
.core-info-blocks {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.info-cell {
    flex: 1;
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s;
}

.info-cell:hover {
    transform: translateY(-3px);
}

.info-cell h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.info-cell p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== 六大突破创意网格 ========== */
.breakthrough-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.bt-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 30px 25px;
    box-shadow: var(--shadow-card);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.bt-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 35px -8px rgba(43, 108, 176, 0.1);
    transform: translateY(-4px);
}

.bt-icon-wrap {
    margin-bottom: 20px;
}

.bt-icon {
    font-size: 36px;
    line-height: 1;
}

.bt-card h3 {
    font-size: 18px;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.bt-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========== 四步部署流程 ========== */
.steps-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 30px 0;
}

.step-item {
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
    position: relative;
    padding: 20px 15px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 15px rgba(43, 108, 176, 0.25);
}

.step-content h3 {
    font-size: 18px;
    color: var(--primary-deep);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-gray);
}

.step-connector {
    width: 40px;
    height: 3px;
    background: var(--border-light);
    align-self: center;
    margin-bottom: 40px;
    flex-shrink: 0;
    border-radius: 10px;
}

.steps-note {
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
    color: var(--text-gray);
}

.steps-note a {
    color: var(--primary);
    font-weight: 600;
}

/* ========== 社区信任数据栏 ========== */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    background: var(--bg-white);
    padding: 40px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin: 20px 0;
}

.trust-stat {
    text-align: center;
    min-width: 100px;
}

.trust-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.trust-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.trust-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

/* ========== 页脚 ========== */
footer {
    background: var(--bg-dark-footer);
    color: var(--footer-text);
    padding: 50px 0 0;
    border-top: 4px solid var(--primary);
    font-size: 14px;
}

.footer-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

.footer-cell {
    flex: 1 1 200px;
    min-width: 160px;
}

.footer-cell h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

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

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

.footer-cell ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-cell ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--footer-text);
    line-height: 1.8;
}

.footer-bottom p {
    margin: 0;
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .menu-area {
        justify-content: center;
    }
    .banner h1 {
        font-size: 26px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .img-placeholder {
        height: auto;
        max-height: 220px;
    }
    .core-info-blocks,
    .steps-flow {
        flex-direction: column;
        gap: 20px;
    }
    .step-item {
        max-width: 100%;
    }
    .step-connector {
        display: none;
    }
    .trust-bar {
        gap: 20px;
        padding: 25px 15px;
    }
    .trust-number {
        font-size: 28px;
    }
    .footer-row {
        flex-direction: column;
    }
    .footer-cell {
        flex: 1 1 100%;
    }
}
/* ========== Banner 行动按钮组 ========== */
.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 30px 0;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    line-height: 1.2;
}

.btn-primary {
    background: #ffffff;
    color: #1a365d;
    border-color: #ffffff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #edf2f7;
    border-color: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.7);
    backdrop-filter: blur(2px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

.btn-icon {
    font-size: 18px;
    line-height: 1;
}

/* 移动端调整 */
@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-primary,
    .btn-outline {
        width: 80%;
        justify-content: center;
    }
}