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

:root {
    --bg-white: #FFFFFF;
    --bg-light-gray: #F0F0F0;
    --text-dark: #0D0D0D;
    --text-gray: #1A1A1A;
    --gradient-purple-start: #9D4EDD;
    --gradient-purple-end: #C77DFF;
    --accent-pink: #FF006E;
    --accent-yellow: #FFED4E;
    --button-hover: #FF006E;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', 'SF Pro Display', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== 导航栏 ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gradient-purple-start);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-gray);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== 首屏英雄区域 ========== */
.hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light-gray) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gradient-purple-end), var(--button-hover));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(199, 125, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gradient-purple-end), var(--button-hover));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(199, 125, 255, 0.4);
}

/* ========== 痛点分析区域 ========== */
.pain-points {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {

    /* text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #c860c59b; /* 浅灰色 */
    /* border-radius: 8px;
    padding: 1rem 2rem;  */ 
    display: table;              /* 关键：宽度随内容收缩 */
    margin: 0 auto 4rem;         /* 居中 + 下边距 */
    font-size: 1.2rem;
    color: var(--text-gray);
  
    background-color: #f0cbee9b; /* 你的高亮色 */
    border-radius: 8px;
    padding: 0.6rem 1.2rem;      /* 可按需要微调更“贴近” */
    line-height: 1.4;            /* 让高亮更干净 */
    text-align: center;          /* 文本自身居中 */
  
    
    
}

.pain-grid {
    display: grid;
    /* 默认布局：后面通过媒体查询分别控制移动端 / 桌面端列数 */
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

 .pain-card {
    background: var(--bg-light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pain-card:hover {
    border-color: var(--gradient-purple-start);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* 桌面端：强制三列展示痛点卡片 */
@media (min-width: 769px) {
    .pain-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

.pain-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pain-description {
    color: var(--text-gray);
    line-height: 1.8;
}

.pain-list {
    display: inline-block; /* 关键：让列表整体居中 */
    text-align: left;      /* 文字左对齐 */
    list-style: none;
    padding: 0;
    margin-top: 12px;
  }
  
  .pain-list li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.8;
  }
  
  .pain-list li::before {
    content: "•";
    position: absolute;
    left: 0;
  }

/* ========== 解决方案展示 ========== */
.solution {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, var(--bg-white) 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-top: 3rem;
    max-width: 1180px; /* 宽屏下让文字 + comparison box 整体更宽一些 */
    margin-left: auto;
    margin-right: auto;
}

.solution-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(157, 78, 221, 0.18);
    position: relative;
    overflow: hidden;
}

.solution-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--accent-pink));
}

.solution-feature-card .solution-text {
    position: relative;
    z-index: 1;
}

.solution-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.solution-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Solution feature grid (icon cards like screenshot 2) */
.feature-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem 2rem;
    align-items: stretch;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Desktop: force 3 columns for the solution feature cards so 6 items are always 3×2 */
@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    padding: 0.5rem 0.25rem;
    min-height: 176px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 107, 255, 0.08);
    border: 1px solid rgba(47, 107, 255, 0.18);
    color: #2F6BFF;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px);
    background: rgba(47, 107, 255, 0.12);
    border-color: rgba(47, 107, 255, 0.28);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-title {
    margin-top: 0.35rem;
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.78);
    line-height: 1.65;
    max-width: 34ch;
}

/* Backward compatible: if any pages still use the old single-line paragraph */
.feature-card-text {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.78);
    line-height: 1.65;
}

.comparison-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* 防止内部紫色高亮边框在高分辨率下“突出来” */
}

/* ========== Comparison Table (Traditional vs Insight) ========== */
.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.06) 0%, rgba(199, 125, 255, 0.08) 100%);
}

.comparison-table th,
.comparison-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.comparison-table th {
    font-weight: 650;
    color: var(--text-dark);
    white-space: nowrap;
}

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

.comparison-table tbody tr:hover {
    background: #f5f0ff;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--gradient-purple-start);
    white-space: nowrap;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
    max-width: 260px;
}

/* 让表格中的 ✓ / × 图标与文字同一行对齐 */
.comparison-table .comparison-status-icon {
    display: inline-flex;
    margin-right: 0.4rem;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem 0.6rem;
    }
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--bg-light-gray);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-label {
    font-weight: 600;
    color: var(--text-gray);
}

.comparison-value {
    font-weight: 600;
}

.comparison-value.traditional {
    color: #999;
}

.comparison-value.insight {
    color: var(--gradient-purple-start);
}

/* ========== 差异化优势区 ========== */
.differentiation {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diff-card {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05) 0%, rgba(199, 125, 255, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    transition: all 0.3s;
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--gradient-purple-start);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.diff-icon {
    font-size: 2.5rem;
    /* 图标和标题同一行显示 */
    display: inline-flex;
    align-items: center;
    margin-right: 0.75rem;
    margin-bottom: 0;
}

.diff-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    /* 与图标在同一行 */
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.diff-description {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========== 客户验证与案例 ========== */
.testimonials {
    padding: 5rem 2rem;
    background: var(--bg-light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--gradient-purple-start);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.result-card {
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========== 行动号召区域 ========== */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gradient-purple-start);
}

.cta-card-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    padding: 0.8rem;
    border: 2px solid var(--bg-light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--gradient-purple-start);
}

/* 手机号输入组样式 */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    /* 作为下拉菜单的定位容器，方便控制最大宽度 */
    position: relative;
}

.phone-select {
    /* 收起时国家选择器尽量紧凑，只放下国旗+箭头 */
    flex: 0 0 auto;
    width: 80px;
    min-width: 60px;
}

.phone-select-toggle {
    width: 100%;
    height: 100%;
    padding: 0.7rem 2.5rem 0.7rem 0.9rem;
    border: 2px solid var(--bg-light-gray);
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.phone-select-toggle .dropdown-arrow {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #555;
}

.phone-select-menu {
    position: absolute;
    /* 以整个手机号输入组为参照，出现在其下方 */
    top: calc(100% + 6px);
    left: 0;
    /* 宽度不写死，最大宽度与上方 email 输入框保持一致（即整个表单宽度） */
    width: 100%;
    max-width: 100%;
    max-height: 260px;
    background: #fff;
    border: 1px solid var(--bg-light-gray);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.phone-select-menu.open {
    display: block;
}

.phone-select-option {
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
}

.phone-select-option:hover,
.phone-select-option.active {
    background: #f2f4f7;
}

.phone-select-option .flag {
    width: 16px;
    height: 11px;
}

.flag-emoji {
    flex: 0 0 22px;
    text-align: left;
}

.phone-option-text {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.phone-option-dial {
    color: #555;
    white-space: nowrap;
}

.phone-number {
    flex: 1 1 65%;
    min-width: 0;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .phone-input-group {
        flex-direction: column;
    }
    
    .phone-select {
        min-width: 100%;
    }
}

.form-submit {
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
}

.contact-info {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.trust-badge {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========== 页脚 ========== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ========== 语言切换器 ========== */
.lang-switcher {
    position: relative;
    margin-left: 1.5rem;
    z-index: 1001;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--gradient-purple-start);
}

.lang-icon {
    font-size: 1.1rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.lang-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.6rem 1rem;
    border: none;
    background: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s;
}

.lang-option:hover {
    background: var(--bg-light-gray);
    color: var(--gradient-purple-start);
}

.lang-option.selected {
    color: var(--gradient-purple-start);
    font-weight: 600;
    background: rgba(157, 78, 221, 0.05);
}

@media (max-width: 768px) {
     .lang-switcher {
        margin-left: auto;
        margin-right: 1rem;
     }
     
     .lang-dropdown {
        right: -10px;
     }
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-card {
        min-width: 150px;
        padding: 1.5rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pain-grid,
    .diff-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }
}

/* ========== 平滑滚动 ========== */
html {
    scroll-behavior: smooth;
}

/* ========== 动画效果 ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

html[lang="zh-CN"] .zh-only {
    display: block !important;
}

html[lang="zh-CN"] .nonzh-only {
    display: none !important;
}

html[lang="en-US"] .zh-only {
    display: none !important;
}

html[lang="en-US"] .nonzh-only {
    display: block !important;
}

html:not([lang="zh-CN"]) .zh-only {
    display: none !important;
}

html:not([lang="zh-CN"]) .nonzh-only {
    display: block !important;
}

.wechat-qr {
    margin-top: 1.5rem;
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light-gray);
}

.wechat-qr img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ========== Language Specific Display ========== */
html[lang="zh-CN"] .zh-only {
    display: block !important;
}

html[lang="zh-CN"] .nonzh-only {
    display: none !important;
}

html[lang="en-US"] .zh-only {
    display: none !important;
}

html[lang="en-US"] .nonzh-only {
    display: block !important;
}

html:not([lang="zh-CN"]) .zh-only {
    display: none !important;
}

html:not([lang="zh-CN"]) .nonzh-only {
    display: block !important;
}

/* ========== WeChat QR Code ========== */
.wechat-qr {
    margin-top: 1.5rem;
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light-gray);
}

.wechat-qr img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ========== Language Specific Display ========== */
html[lang="zh-CN"] .zh-only {
    display: block !important;
}

html[lang="zh-CN"] .nonzh-only {
    display: none !important;
}

html[lang="en-US"] .zh-only {
    display: none !important;
}

html[lang="en-US"] .nonzh-only {
    display: block !important;
}

/* Fallback for other languages (treat as non-zh) */
html:not([lang="zh-CN"]) .zh-only {
    display: none !important;
}
html:not([lang="zh-CN"]) .nonzh-only {
    display: block !important;
}

/* ========== WeChat QR Code ========== */
.wechat-qr {
    margin-top: 1.5rem;
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light-gray);
}

.wechat-qr img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

html[lang="zh-CN"] .wechat-qr { text-align: center; }
html[lang="zh-CN"] .wechat-qr img { width: 180px; display: inline-block; margin: 0 auto; }
html[lang="zh-CN"] .zh-only { display: block !important; }

.contact-qr-row {
    /* 强制两列布局：Slack 和 WhatsApp 左右并排 */
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 1.5rem;
    row-gap: 0;
    margin-top: 0.75rem;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}
.qr-item {
    text-align: center;
}
.qr-item img {
    width: 100px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.qr-label {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}
@media (max-width: 480px) {
    .qr-item img { width: 90px; }
}

.hl{
    background: rgba(255, 121, 106, 0.22);
    padding: 0 .45em;
    border-radius: .45em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; /* 换行时每行都有圆角背景 */
  }
/* ========== Insight Search Comparison Cards ========== */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    grid-column: 1 / -1; /* 让头部在多列布局时横跨整行 */
}

.comparison-header-item {
    text-align: center;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-header-item.traditional {
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    color: #666;
    border: 2px solid #ddd;
}

.comparison-header-item.insight {
    background: linear-gradient(135deg, var(--gradient-purple-start) 0%, var(--gradient-purple-end) 100%);
    color: white;
    border: 2px solid var(--gradient-purple-start);
}

.comparison-card {
    background: white;
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 78, 221, 0.15);
    border-color: rgba(157, 78, 221, 0.3);
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, rgba(199, 125, 255, 0.1) 100%);
}

.comparison-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-example {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-left: 3px solid var(--gradient-purple-start);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.comparison-col {
    padding: 0.9rem;
    border-radius: 10px;
    position: relative;
}

.comparison-col.traditional {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.comparison-col.insight {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05) 0%, rgba(199, 125, 255, 0.05) 100%);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.comparison-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.comparison-status.traditional {
    color: #999;
}

.comparison-status.insight {
    color: var(--gradient-purple-start);
}

.comparison-status-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.comparison-status-icon.negative {
    background: #ffebee;
    color: #c62828;
}

.comparison-status-icon.positive {
    background: linear-gradient(135deg, var(--gradient-purple-start), var(--gradient-purple-end));
    color: white;
}

.comparison-result {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.comparison-highlight {
    color: var(--gradient-purple-start);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .comparison-header {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-card {
        padding: 0.85rem 0.9rem;
    }
}

/* Tablet & above: 2 列卡片 */
@media (min-width: 900px) {
    .comparison-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Desktop wide-screen layout: 3 列卡片（5 个卡片时自然排成 3 + 2，整体居中、留白更舒展） */
@media (min-width: 1280px) {
    .comparison-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1320px;      /* 宽屏上更“撑开”一些，同时左右仍有留白 */
        margin-left: auto;
        margin-right: auto;     /* 整体居中 */
        gap: 1.9rem;            /* 宽屏时卡片之间更舒展，不那么紧凑 */
    }
}


/* ========== FAQ Section ========== */
.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--bg-light-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gradient-purple-start);
}

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}