@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2a7db8;
    --primary-light: #eaf2fb;
    --bg-light: #f4f8fb;
    --bg-gray: #fcfcfd;
    --secondary-color: #00b3d7;
    --text-main: #1a2a3a;
    --text-muted: #6b7c93;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(42, 125, 184, 0.08);
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 双语支持样式 */
.bilingual .en {
    display: block;
}

.bilingual .zh {
    display: none;
}

html {
    scroll-behavior: smooth;
}

/* 为锚点section添加偏移，避免被固定导航栏遮挡 */
section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-gray);
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(42, 125, 184, 0.08);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-en {
    font-size: 16px;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* 语言切换按钮样式 */
.language-switch {
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.lang-btn {
    background: none;
    border: none;
    padding: 5px 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.lang-btn.active {
    color: var(--secondary-color);
    font-weight: 500;
}

.lang-btn:hover {
    color: var(--secondary-color);
}

.divider {
    color: #ddd;
    margin: 0 2px;
    font-size: 14px;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-color), #4a90e2);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease !important;
    font-weight: 500;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1a5f9e, #3a7bc8);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 118, 193, 0.3);
}

/* 公司简介部分 */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #e0eaf5 0%, #f4f8fb 50%, #e6f0f9 100%);
    display: flex;
    align-items: center;
    color: var(--text-main);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* 添加一个科技感的光晕背景元素 */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 179, 215, 0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(42, 125, 184, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    padding-right: 60px;
}

.hero-content {
    max-width: 650px;
    padding: 0;
    /* Removed glassmorphism box for a cleaner, Torl Bio style */
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 24px;
    text-align: left;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: left;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-content .description {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 480px;
    overflow: hidden;
    position: relative;
    /* Organic Blob Shape */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(42, 125, 184, 0.15);
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cta {
    text-align: left;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* 滚动指示器样式 */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll 2s infinite;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow span {
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    margin: 2px 0;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(1) { animation-delay: 0s; }
.arrow span:nth-child(2) { animation-delay: 0.2s; }
.arrow span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

@keyframes arrow {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* 技术优势部分 */
.advantages-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.pain-points, .our-advantages {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(42, 125, 184, 0.05);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pain-points:hover, .our-advantages:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 125, 184, 0.12);
}

.pain-points h3, .our-advantages h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pain-points ul, .our-advantages ul {
    list-style: none;
}

.pain-points li, .our-advantages li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pain-points i {
    color: #dc3545;
    margin-right: 10px;
}

.our-advantages i {
    color: #28a745;
    margin-right: 10px;
}

/* 技术平台简介 */
.tech-platform {
    padding: 80px 0;
    background: var(--bg-gray);
}

.tech-platform-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.tech-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tech-platform-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(42, 125, 184, 0.06);
    border: 1px solid rgba(42, 125, 184, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tech-platform-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.tech-platform-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.tech-platform-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* 现代公司新闻区 */
.news-modern {
    background: var(--bg-light);
    padding: 80px 0;
}
.news-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
}
.news-left {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}
.news-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #2a7db8;
    margin-bottom: 10px;
}
.news-logo-icon {
    font-size: 2.2rem;
    margin-right: 10px;
    color: #f5a623;
}
.news-logo-text {
    font-size: 1.3rem;
    color: #2a7db8;
    font-weight: 700;
}
.news-title-main {
    font-size: 1.5rem;
    color: #222;
    letter-spacing: 2px;
    font-weight: 600;
    margin-left: 2px;
}
.news-list-modern {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}
.news-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(42,125,184,0.08);
    padding: 32px 36px;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.news-card:hover {
    box-shadow: 0 8px 32px rgba(42,125,184,0.16);
    transform: translateY(-4px) scale(1.02);
}
.news-card-title {
    font-size: 1.18rem;
    color: #1a2a3a;
    font-weight: 600;
    flex: 1;
}
.news-card-meta {
    color: #f5a623;
    font-size: 1rem;
    margin-left: 32px;
    min-width: 180px;
    text-align: right;
}
.news-card-arrow {
    margin-left: 32px;
}
.news-card-arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #eaf2fb;
    border-radius: 50%;
    color: #2a7db8;
    font-size: 1.5rem;
    transition: background 0.3s, color 0.3s;
}
.news-card:hover .news-card-arrow span {
    background: #2a7db8;
    color: #fff;
}
@media (max-width: 900px) {
    .news-container { flex-direction: column; gap: 24px; }
    .news-left { flex-direction: row; align-items: center; min-width: unset; }
    .news-title-main { margin-left: 16px; }
}
@media (max-width: 600px) {
    .news-modern { padding: 40px 0; }
    .news-card { flex-direction: column; align-items: flex-start; padding: 20px 16px; }
    .news-card-meta, .news-card-arrow { margin-left: 0; margin-top: 12px; }
    .news-card-arrow span { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* 页脚 */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .nav-right {
        flex-direction: row;
        width: auto;
        gap: 0;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        border-radius: 0 0 12px 12px;
        flex-direction: column;
        width: 180px;
        display: none;
        z-index: 1001;
        padding: 16px 0;
    }
    .nav-links li {
        margin: 0;
        padding: 12px 24px;
        text-align: left;
    }
    .mobile-menu-button {
        display: block;
    }
    .language-switch {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .tech-platform-grid {
        grid-template-columns: 1fr;
    }
    .platform-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    /* Hero section 响应式 */
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    .hero-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 36px;
        text-align: center;
    }
    .hero-content h2 {
        font-size: 28px;
        text-align: center;
    }
    .hero-content .subtitle {
        text-align: center;
    }
    .hero-content .description {
        text-align: center;
    }
    .hero-cta {
        text-align: center;
    }
    .hero-right {
        width: 100%;
    }
    .hero-image {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .platform-icons {
        grid-template-columns: 1fr;
    }
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
    .nav-links li {
        margin: 5px 0;
    }
    /* Hero section 小屏幕响应式 */
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content h2 {
        font-size: 22px;
    }
    .hero-content .subtitle {
        font-size: 18px;
    }
    .hero-content .description {
        font-size: 16px;
    }
    .hero-image {
        height: 250px;
    }
    .image-placeholder i {
        font-size: 3rem;
    }
    .image-placeholder p {
        font-size: 1rem;
    }
}

/* 产品管线样式 */
.pipeline-section {
    background: var(--bg-light);
    padding: 40px 0 60px 0;
}
.pipeline-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}
.pipeline-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
    background: none;
}
.pipeline-table th, .pipeline-table td {
    background: transparent;
    padding: 24px 16px;
    text-align: center;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(42, 125, 184, 0.1);
}
.pipeline-table th {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    background: transparent;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
}
.pipeline-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a2a3a;
    min-width: 180px;
}
.pipeline-moa {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 400;
}
.pipeline-bar {
    width: 60px;
    height: 16px;
    border-radius: 8px;
    background: #e9eef5;
    margin: 0 auto;
}
.pipeline-bar.yellow { background: #ffe082; }
.pipeline-bar.green { background: #7ed957; }
.pipeline-bar.blue { background: #5bb6f9; }
.pipeline-bar.purple { background: #b388ff; }
@media (max-width: 900px) {
    .pipeline-table th, .pipeline-table td { padding: 10px 4px; font-size: 0.95rem; }
    .pipeline-table td:first-child { min-width: 120px; }
}
@media (max-width: 600px) {
    .pipeline-section { padding: 20px 0 30px 0; }
    .pipeline-table th, .pipeline-table td { padding: 8px 2px; font-size: 0.9rem; }
}

/* 技术对照表格样式 */
.tech-compare-section {
    background: var(--bg-light);
    padding: 40px 0 40px 0;
}
.tech-compare-table-wrap {
    overflow-x: auto;
    margin-top: 24px;
}
.tech-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(42,125,184,0.06);
}
.tech-compare-table th, .tech-compare-table td {
    padding: 16px 8px;
    text-align: center;
    font-size: 1rem;
    border: 1px solid #e0e6ed;
}
.tech-compare-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
}
.tech-compare-table td {
    background: #fff;
    color: #222;
    font-weight: 500;
}
.tech-compare-table .yes {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
}
.tech-compare-table .no {
    color: #dc3545;
    font-size: 1.2rem;
    font-weight: bold;
}
.tech-compare-table td, .tech-compare-table th {
    min-width: 120px;
}
.tech-compare-table td {
    font-size: 1rem;
}
.tech-compare-table td:contains('Limited'),
.tech-compare-table td:contains('Moderate'),
.tech-compare-table td:contains('Variable'),
.tech-compare-table td:contains('High'),
.tech-compare-table td:contains('Lower'),
.tech-compare-table td:contains('Good'),
.tech-compare-table td:contains('Excellent') {
    color: #888;
    font-weight: 500;
}
@media (max-width: 900px) {
    .tech-compare-table th, .tech-compare-table td { padding: 10px 4px; font-size: 0.95rem; }
}
@media (max-width: 600px) {
    .tech-compare-section { padding: 20px 0 20px 0; }
    .tech-compare-table th, .tech-compare-table td { padding: 8px 2px; font-size: 0.9rem; }
}

/* 关于我们时间线样式 */
.about-timeline-section {
    background: var(--bg-light);
    padding: 40px 0 40px 0;
}
.about-timeline-desc {
    max-width: 800px;
    margin: 0 auto 36px auto;
    font-size: 1.08rem;
    color: #333;
    text-align: center;
}
.timeline-wrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0 20px 0;
}
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.timeline-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.timeline-list li {
    position: relative;
    margin-bottom: 40px;
    padding-left: 60px;
}
.timeline-date {
    position: absolute;
    left: -10px;
    top: 0;
    width: 80px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: right;
}
.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 6px;
}
.timeline-desc {
    font-size: 1rem;
    color: #555;
}
@media (max-width: 600px) {
    .about-timeline-section { padding: 20px 0 20px 0; }
    .timeline-wrap { padding: 10px 0; }
    .timeline-list li { padding-left: 50px; margin-bottom: 28px; }
    .timeline-date { width: 60px; font-size: 0.98rem; }
    .timeline-title { font-size: 1rem; }
    .timeline-desc { font-size: 0.92rem; }
}

/* 优化后的关于我们时间线竖向样式 */
.timeline-vertical { padding-top: 10px; }
.timeline-list-vertical {
    position: relative;
    margin: 0;
    padding: 0;
}
.timeline-list-vertical::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.timeline-row {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 36px;
    min-height: 60px;
}
.timeline-date {
    width: 90px;
    text-align: right;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    margin-right: 16px;
    flex-shrink: 0;
    line-height: 1.6;
    position: relative;
    left: 0;
}
.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    left: 0;
    top: 2px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(42,125,184,0.10);
    margin-right: 24px;
}
.timeline-content {
    background: #fafdff;
    border-radius: 8px;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(42,125,184,0.06);
    min-width: 180px;
    max-width: 420px;
    margin-left: 0;
}
.timeline-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 6px;
}
.timeline-desc {
    font-size: 1rem;
    color: #555;
}
@media (max-width: 700px) {
    .timeline-row { flex-direction: column; align-items: flex-start; }
    .timeline-date { text-align: left; margin: 0 0 6px 0; left: 0; }
    .timeline-dot { left: 0; top: 2px; margin-right: 0; }
    .timeline-content { margin-left: 0; max-width: 100%; }
    .timeline-list-vertical::before { left: 44px; }
}

/* 汉堡按钮样式 */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-left: 16px;
    z-index: 1100;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .nav-right {
        flex-direction: row;
        width: auto;
        gap: 0;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        border-radius: 0 0 12px 12px;
        flex-direction: column;
        width: 180px;
        display: none;
        z-index: 1001;
        padding: 16px 0;
    }
    .nav-links li {
        margin: 0;
        padding: 12px 24px;
        text-align: left;
    }
    .mobile-menu-button {
        display: block;
    }
    .language-switch {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
    }
}

#backToTopBtn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    box-shadow: var(--glass-shadow);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#backToTopBtn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(42, 125, 184, 0.2);
}

.section-title {
    position: relative;
    display: block;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 32px;
}

/* MCLICK Platform Specific Styles */
.dar-pill {
    display: inline-block;
    background: rgba(42, 125, 184, 0.08);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(42, 125, 184, 0.15);
    transition: all 0.3s ease;
}
.dar-row:hover {
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(42, 125, 184, 0.08);
    transform: translateY(-2px);
}
.dar-row:hover .dar-pill {
    background: var(--primary-color);
    color: #fff;
}
.adv-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(42, 125, 184, 0.1);
}
.adv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    background: rgba(42, 125, 184, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.adv-card:hover .adv-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}
.adv-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* SaaS Matrix Table Styles */
.SaaS-matrix {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}
.SaaS-matrix th, .SaaS-matrix td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(42, 125, 184, 0.08);
    transition: all 0.3s ease;
}
.SaaS-matrix th {
    border-bottom: none;
    color: var(--text-main);
    font-weight: 700;
}
.SaaS-matrix .feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
}
.SaaS-matrix .col-highlight {
    background: var(--glass-bg);
    box-shadow: 0 8px 32px rgba(42, 125, 184, 0.08);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}
.SaaS-matrix th.col-highlight {
    border-top: 1px solid var(--glass-border);
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, rgba(42, 125, 184, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: var(--primary-color);
}
.SaaS-matrix td.col-highlight {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: none;
}
.SaaS-matrix .competitor-col {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.05rem;
}
.SaaS-matrix tr:hover td:not(.col-highlight) {
    background: rgba(42, 125, 184, 0.02);
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}
.badge-high {
    background: rgba(33, 118, 193, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(33, 118, 193, 0.2);
}
.badge-mid {
    background: rgba(245, 166, 35, 0.1);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, 0.2);
}
.badge-low {
    background: rgba(136, 142, 150, 0.08);
    color: #888e96;
    border: 1px solid rgba(136, 142, 150, 0.15);
}

/* 图片放大modal样式 */
#image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.32);
  transition: background 0.2s;
}
#image-modal[style*="display: flex"] {
  display: flex !important;
}
.image-modal-backdrop {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.32);
}
.image-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(33,118,193,0.13);
  padding: 18px 18px 32px 18px;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
#image-modal-img {
  max-width: 80vw;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(42,125,184,0.12);
  margin-bottom: 12px;
}
.image-modal-caption {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
  text-align: center;
  max-width: 70vw;
  word-break: break-all;
}
.image-modal-close {
  position: absolute;
  top: 8px; right: 16px;
  font-size: 2.2rem;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
  transition: color 0.2s;
}
.image-modal-close:hover {
  color: #c12a2a;
}
@media (max-width: 600px) {
  .image-modal-content {padding: 8px 2vw 18px 2vw;}
  #image-modal-img {max-width: 98vw; max-height: 60vh;}
  .image-modal-caption {font-size: 0.92rem;}
} 
/* Utility Classes */
.section-bg-light { background: var(--bg-light); padding: 60px 0; }
.section-bg-white { background: #fff; padding: 56px 0 40px 0; }
.flex-wrap-center { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.flex-column-center { display: flex; flex-direction: column; align-items: center; gap: 32px; justify-content: center; }
.text-center-mb24 { text-align: center; margin-bottom: 24px; }
.content-font-large { font-size: 1.1rem; color: #222; line-height: 2; }

/* Pipeline Synergy & Tracker Dashboard */
.adv-grid .glass-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 125, 184, 0.12);
}
.moa-combinator {
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    border: 1px solid var(--glass-border);
}
.moa-row:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(42,125,184,0.1) !important;
}
.moa-pill {
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}
.moa-top1i { background: rgba(33, 118, 193, 0.1); color: var(--primary-color); border: 1px solid rgba(33,118,193,0.2); }
.moa-mta { background: rgba(245, 166, 35, 0.1); color: #f5a623; border: 1px solid rgba(245,166,35,0.2); }
.moa-ddri { background: rgba(220, 53, 69, 0.1); color: #dc3545; border: 1px solid rgba(220,53,69,0.2); }

.pl-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42, 125, 184, 0.1) !important;
    background: linear-gradient(90deg, #fff 0%, #f8fbfe 100%) !important;
}
.ind-tag {
    background: rgba(136, 142, 150, 0.08);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 8px;
    transform: scale(1.1);
}
.adv-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* SaaS Matrix Table Styles */
.SaaS-matrix {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}
.SaaS-matrix th, .SaaS-matrix td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(42, 125, 184, 0.08);
    transition: all 0.3s ease;
}
.SaaS-matrix th {
    border-bottom: none;
    color: var(--text-main);
    font-weight: 700;
}
.SaaS-matrix .feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
}
.SaaS-matrix .col-highlight {
    background: var(--glass-bg);
    box-shadow: 0 8px 32px rgba(42, 125, 184, 0.08);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}
.SaaS-matrix th.col-highlight {
    border-top: 1px solid var(--glass-border);
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, rgba(42, 125, 184, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: var(--primary-color);
}
.SaaS-matrix td.col-highlight {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: none;
}
.SaaS-matrix .competitor-col {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.05rem;
}
.SaaS-matrix tr:hover td:not(.col-highlight) {
    background: rgba(42, 125, 184, 0.02);
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}
.badge-high {
    background: rgba(33, 118, 193, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(33, 118, 193, 0.2);
}
.badge-mid {
    background: rgba(245, 166, 35, 0.1);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, 0.2);
}
.badge-low {
    background: rgba(136, 142, 150, 0.08);
    color: #888e96;
    border: 1px solid rgba(136, 142, 150, 0.15);
}

/* 图片放大modal样式 */
#image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.32);
  transition: background 0.2s;
}
#image-modal[style*="display: flex"] {
  display: flex !important;
}
.image-modal-backdrop {
  position: absolute;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.32);
}
.image-modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(33,118,193,0.13);
  padding: 18px 18px 32px 18px;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
#image-modal-img {
  max-width: 80vw;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(42,125,184,0.12);
  margin-bottom: 12px;
}
.image-modal-caption {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0;
  text-align: center;
  max-width: 70vw;
  word-break: break-all;
}
.image-modal-close {
  position: absolute;
  top: 8px; right: 16px;
  font-size: 2.2rem;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
  transition: color 0.2s;
}
.image-modal-close:hover {
  color: #c12a2a;
}
@media (max-width: 600px) {
  .image-modal-content {padding: 8px 2vw 18px 2vw;}
  #image-modal-img {max-width: 98vw; max-height: 60vh;}
  .image-modal-caption {font-size: 0.92rem;}
} 
/* Utility Classes */
.section-bg-light { background: var(--bg-light); padding: 60px 0; }
.section-bg-white { background: #fff; padding: 56px 0 40px 0; }
.flex-wrap-center { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.flex-column-center { display: flex; flex-direction: column; align-items: center; gap: 32px; justify-content: center; }
.text-center-mb24 { text-align: center; margin-bottom: 24px; }
.content-font-large { font-size: 1.1rem; color: #222; line-height: 2; }

/* Pipeline Synergy & Tracker Dashboard */
.adv-grid .glass-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 125, 184, 0.12);
}
.moa-combinator {
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    border: 1px solid var(--glass-border);
}
.moa-row:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(42,125,184,0.1) !important;
}
.moa-pill {
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}
.moa-top1i { background: rgba(33, 118, 193, 0.1); color: var(--primary-color); border: 1px solid rgba(33,118,193,0.2); }
.moa-mta { background: rgba(245, 166, 35, 0.1); color: #f5a623; border: 1px solid rgba(245,166,35,0.2); }
.moa-ddri { background: rgba(220, 53, 69, 0.1); color: #dc3545; border: 1px solid rgba(220,53,69,0.2); }

.pl-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42, 125, 184, 0.1) !important;
    background: linear-gradient(90deg, #fff 0%, #f8fbfe 100%) !important;
}
.ind-tag {
    background: rgba(136, 142, 150, 0.08);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(136, 142, 150, 0.15);
    transition: all 0.2s;
}
.pl-row:hover .ind-tag {
    background: rgba(42, 125, 184, 0.1);
    color: var(--primary-color);
    border-color: rgba(42, 125, 184, 0.2);
}

/* --- Mobile Responsiveness Overrides --- */
@media (max-width: 768px) {
    /* Hero Title sizing */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    /* Pipeline / Synergy Dashboard */
    .adv-grid {
        grid-template-columns: 1fr !important;
    }
    .pipeline-board {
        padding: 24px 20px !important;
    }
    .moa-combinator {
        padding: 20px !important;
    }
    
    /* Global Section Title */
    .section-title {
        font-size: 2rem !important;
    }
    
    /* Feature Section Padding */
    .feature-section {
        padding: 60px 0 !important;
    }
    
    /* MCLICK grid adjustment */
    .mclick-section {
        padding: 60px 0 !important;
    }
}
