/* 页面特定样式 - 从各页面内联样式提取 */

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

/* ========== 页脚链接样式 ========== */
.footer-links a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6) !important;
    margin-left: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.footer-bottom-text {
    margin-top: 10px;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.6);
}

/* ========== 专家服务页面补充样式 ========== */
.hero-buttons-with-margin {
    margin-top: 2.5rem;
}

.features-section-alt-bg {
    background: var(--background-alt);
}

/* ========== 起名方法页面补充样式 ========== */
.section-title-left {
    text-align: left;
}

.section-title-left-with-margin {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* ========== 用户价值页面补充样式 ========== */
.section-margin-top {
    margin-top: 4rem;
}

.stat-desc-text {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ========== 专家服务页面样式 ========== */

/* 手风琴样式 */
.accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--background-alt);
}

.accordion-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    text-align: left;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--background-alt);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: var(--font-size-sm);
}

/* App下载按钮样式 */
.app-download {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.download-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.download-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-dark);
}

/* 时间线样式 */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

/* 时间线主线 */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-light);
    border-radius: 2px;
}

/* 时间线项目 */
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

/* 奇数项在左边，偶数项在右边 */
.timeline-item:nth-child(odd) {
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 3rem;
    margin-left: auto;
}

/* 时间线标记（圆圈） */
.timeline-marker {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

/* 奇数项的标记在右边，偶数项在左边 */
.timeline-item:nth-child(odd) .timeline-marker {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -30px;
}

/* 时间线内容卡片 */
.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.timeline-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

/* 流程步骤样式 */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--text-medium);
    line-height: 1.7;
}

/* 资质卡片样式 */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.credential-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
}

.credential-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* 蓝色图标 - 专业资质 */
.credential-icon-blue {
    background: rgba(100, 102, 233, 0.1);
    border: 2px solid rgba(100, 102, 233, 0.3);
}

.credential-icon-blue img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(98%) saturate(2345%) hue-rotate(228deg) brightness(98%) contrast(93%);
}

/* 绿色图标 - 口碑认证 */
.credential-icon-green {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.credential-icon-green img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(72%) saturate(747%) hue-rotate(122deg) brightness(94%) contrast(92%);
}

/* 黄色图标 - 服务保障 */
.credential-icon-yellow {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.credential-icon-yellow img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(53%) saturate(1627%) hue-rotate(4deg) brightness(95%) contrast(93%);
}

/* 紫色图标 - 24/7客服 */
.credential-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.credential-icon-purple img {
    filter: brightness(0) saturate(100%) invert(52%) sepia(87%) saturate(1872%) hue-rotate(253deg) brightness(90%) contrast(95%);
}

.credential-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.credential-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: var(--font-size-sm);
}

/* ========== 隐私政策页面补充样式 ========== */
.company-text-center {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
}

/* ========== 隐私政策页面样式 ========== */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.8;
    font-size: 16px;
}

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

.privacy-container h1 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.warning-box {
    padding: 12px 15px;
    margin-bottom: 15px;
}

.warning-box p {
    margin-bottom: 8px;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

.content {
    margin-top: 20px;
}

.privacy-container p {
    margin-bottom: 12px;
    text-indent: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.privacy-container strong {
    font-weight: bold;
}

.privacy-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
    padding-left: 10px;
}

.privacy-subsection-title {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.privacy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

.privacy-container th,
.privacy-container td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    vertical-align: top;
}

.privacy-container th {
    font-weight: bold;
    background-color: #f5f5f5;
}

.data-table {
    font-size: 13px;
}

.data-table th,
.data-table td {
    padding: 6px;
}

.privacy-container ul,
.privacy-container ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.privacy-container li {
    margin-bottom: 8px;
}

/* ========== 用户协议页面样式 ========== */

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

.terms-container h1 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.terms-warning-box {
    padding: 12px 15px;
    margin-bottom: 15px;
}

.terms-warning-box p {
    margin-bottom: 8px;
}

.terms-warning-box p:last-child {
    margin-bottom: 0;
}

.terms-content {
    margin-top: 20px;
}

.terms-container p {
    margin-bottom: 12px;
    text-indent: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.terms-container strong {
    font-weight: bold;
}

.terms-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
    padding-left: 10px;
}

.terms-subsection {
    margin-left: 0;
}

.terms-subsection-title {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.terms-container ul,
.terms-container ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.terms-container li {
    margin-bottom: 8px;
}

/* ========== 响应式设计 ========== */

/* 平板设备 */
@media (max-width: 1024px) {
    /* 用户价值页面 */
    .needs-section .pain-point-content {
        grid-template-columns: 1fr !important;
        margin-left: 60px;
    }

    .needs-section .tool-comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .core-demands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* 平板竖屏与移动端横屏 (768px) */
@media (max-width: 768px) {
    .pain-point-section {
        margin-top: 3rem;
    }

    .pain-point-header {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .pain-point-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.75rem;
    }

    .pain-point-title {
        font-size: var(--font-size-lg);
    }

    .needs-section .pain-point-content {
        grid-template-columns: 1fr !important;
        margin-left: 60px;
        gap: 1.5rem;
    }

    .problem-card,
    .solution-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: var(--font-size-sm);
        margin-bottom: 0.75rem;
    }

    .problem-list li,
    .solution-list li {
        padding: 0.375rem 0;
        padding-left: 1.25rem;
        font-size: var(--font-size-xs);
    }

    .needs-section .tool-comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .comparison-card {
        width: 100%;
        max-width: 100%;
        padding: 1.25rem 1rem;
    }

    .comparison-card.highlight {
        transform: scale(1.02);
    }

    .comparison-card h3 {
        font-size: var(--font-size-lg);
        margin-bottom: 1.25rem;
    }

    .comparison-list li {
        padding: 0.375rem 0;
        font-size: var(--font-size-xs);
    }
}

/* 手机屏幕 (480px) - 隐私政策/用户协议 */
@media (max-width: 480px) {
    .privacy-container,
    .terms-container {
        padding: 15px 10px;
    }

    .privacy-container h1,
    .terms-container h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    /* 用户价值页面响应式设计 */
    .pain-point-section {
        margin-top: 2rem;
    }

    .pain-point-header {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .pain-point-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.5rem;
    }

    .pain-point-title {
        font-size: var(--font-size-md);
    }

    .needs-section .pain-point-content {
        grid-template-columns: 1fr !important;
        margin-left: 0;
        gap: 1rem;
    }

    .problem-card,
    .solution-card {
        padding: 1rem;
    }

    .card-title {
        font-size: var(--font-size-xs);
        margin-bottom: 0.5rem;
    }

    .problem-list li,
    .solution-list li {
        padding: 0.25rem 0;
        padding-left: 1rem;
        font-size: 0.75rem;
    }

    .needs-section .tool-comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-top: 2rem;
    }

    .comparison-card {
        width: 100%;
        max-width: 100%;
        padding: 1rem 0.75rem;
    }

    .comparison-card.highlight {
        transform: scale(1.01);
    }

    .comparison-card h3 {
        font-size: var(--font-size-md);
        margin-bottom: 1rem;
    }

    .comparison-list li {
        padding: 0.25rem 0;
        font-size: 0.75rem;
    }

    .core-demands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .demand-card {
        padding: 1.5rem 1rem;
    }

    .demand-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .demand-card h3 {
        font-size: var(--font-size-md);
        margin-bottom: 0.5rem;
    }

    .demand-card p {
        font-size: var(--font-size-xs);
    }

    .decision-factors-list {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .decision-factor-item {
        padding: 1rem 0;
    }

    .factor-title {
        font-size: var(--font-size-sm);
    }

    .factor-desc {
        font-size: 0.75rem;
    }

    .progress-bar {
        height: 8px;
    }

    .progress-value {
        font-size: var(--font-size-xs);
    }

    .warning-box,
    .terms-warning-box {
        padding: 10px 12px;
    }

    .privacy-section-title,
    .terms-section-title {
        font-size: 16px;
        margin-top: 15px;
    }

    .privacy-container table {
        font-size: 12px;
    }

    .data-table th,
    .data-table td {
        padding: 4px;
    }

    /* 时间线移动端样式 */
    .timeline-container {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .timeline-container::before {
        left: 30px;
        transform: none;
        width: 3px;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 2rem;
        padding-left: 70px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-marker {
        left: 0 !important;
        right: auto !important;
        width: 48px;
        height: 48px;
        font-size: var(--font-size-md);
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-title {
        font-size: var(--font-size-lg);
        margin-bottom: 0.5rem;
    }

    .timeline-desc {
        font-size: var(--font-size-xs);
    }
}

/* 超小屏幕优化 (360px) */
@media (max-width: 360px) {
    /* 用户价值页面超小屏幕优化 */
    .pain-point-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .pain-point-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.25rem;
    }

    .pain-point-title {
        font-size: var(--font-size-sm);
    }

    .problem-card,
    .solution-card {
        padding: 0.75rem;
    }

    .card-title {
        font-size: 0.75rem;
    }

    .problem-list li,
    .solution-list li {
        padding: 0.2rem 0;
        padding-left: 0.75rem;
        font-size: 0.7rem;
    }

    .needs-section .tool-comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .comparison-card {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 0.5rem;
    }

    .comparison-card h3 {
        font-size: var(--font-size-sm);
        margin-bottom: 0.75rem;
    }

    .comparison-list li {
        padding: 0.2rem 0;
        font-size: 0.7rem;
    }

    .core-demands-grid {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .demand-card {
        padding: 1rem 0.75rem;
    }

    .demand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .demand-card h3 {
        font-size: var(--font-size-sm);
        margin-bottom: 0.375rem;
    }

    .demand-card p {
        font-size: 0.7rem;
    }
}

/* ========== 用户价值页面样式 ========== */

/* 痛点与解决方案区块 */
.pain-point-section {
    margin-top: 4rem;
}

.pain-point-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pain-point-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
}

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

.pain-point-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-left: 80px;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.solution-card {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--primary-light);
}

.card-title {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-card .card-title {
    color: var(--primary-color);
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* 工具生态对比 */
.tool-comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.comparison-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.comparison-card.highlight {
    background: var(--primary-gradient);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

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

.comparison-card.highlight h3 {
    color: white;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
}

.comparison-card.highlight .comparison-list li {
    color: white;
    font-weight: 600;
}

/* 核心诉求网格布局 */
.core-demands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.demand-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
}

.demand-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: none;
}

.demand-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
}

.demand-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.demand-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: var(--font-size-sm);
}

/* 起名决策因素列表 */
.decision-factors-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.decision-factor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.factor-info {
    flex: 0 0 auto;
}

.factor-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.factor-desc {
    font-size: var(--font-size-sm);
    color: var(--text-medium);
    line-height: 1.6;
}

.factor-progress {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background: var(--background-alt);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 6px;
    transition: width 0.6s ease;
}

.progress-value {
    flex: 0 0 auto;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    min-width: 48px;
    text-align: right;
}

/* 列表项圆点样式 */
.bullet-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.bullet-green {
    background: #10B981;
}

.bullet-yellow {
    background: #F59E0B;
}

.bullet-red {
    background: #EF4444;
}

.bullet-white {
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* 平板设备 */
@media (max-width: 1024px) {
    .core-demands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .factor-progress {
        flex: 0 0 220px;
        gap: 0.75rem;
    }

    .progress-value {
        font-size: var(--font-size-md);
        min-width: 40px;
    }
}

/* 移动端 */
@media (max-width: 768px) {
    .core-demands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .demand-card {
        padding: 2rem 1.5rem;
    }

    .demand-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .demand-card h3 {
        font-size: var(--font-size-lg);
        margin-bottom: 0.75rem;
    }

    .demand-card p {
        font-size: var(--font-size-sm);
    }

    .decision-factors-list {
        margin-top: 2rem;
    }

    .decision-factor-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .factor-progress {
        width: 100%;
        flex: 0 0 auto;
    }

    .factor-title {
        font-size: var(--font-size-lg);
    }

    .factor-desc {
        font-size: var(--font-size-xs);
    }
}

/* 超小屏幕 */
@media (max-width: 480px) {
    .core-demands-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .demand-card {
        padding: 1.5rem 1.25rem;
    }

    .demand-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .demand-card h3 {
        font-size: var(--font-size-md);
    }

    .demand-card p {
        font-size: var(--font-size-xs);
    }

    .decision-factors-list {
        gap: 1.5rem;
    }

    .decision-factor-item {
        padding: 1.25rem 0;
    }

    .factor-title {
        font-size: var(--font-size-md);
    }

    .factor-desc {
        font-size: var(--font-size-xs);
    }

    .progress-bar {
        height: 10px;
    }

    .progress-value {
        font-size: var(--font-size-sm);
    }
}
