/* ============================================================
   SafeW 对比页面样式 - css/comparison.css
   版本: V3.2.1 · 2026 安全补丁覆盖
   描述: SafeW与主流通讯软件对比页专属样式
   ============================================================ */

:root {
    --safe-teal: #00c9a7;
    --safe-teal-dark: #009f86;
    --safe-teal-glow: rgba(0, 201, 167, 0.2);
    --safe-teal-light: #e6f7f3;
    --safe-navy: #0b2b4a;
    --safe-navy-light: #1a3b5c;
    --safe-slate: #3a5268;
    --safe-slate-light: #4a6278;
    --safe-mist: #f0f7fa;
    --safe-mist-dark: #e6f0f5;
    --safe-white: #ffffff;
    --safe-border: rgba(0,0,0,0.04);
    --safe-border-strong: rgba(0,0,0,0.08);
    --safe-shadow-sm: 0 4px 16px rgba(0,0,0,0.04);
    --safe-shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --safe-shadow-lg: 0 16px 40px rgba(0,0,0,0.08);
    --safe-shadow-teal: 0 6px 20px rgba(0,201,167,0.25);
    --safe-radius-sm: 12px;
    --safe-radius-md: 18px;
    --safe-radius-lg: 24px;
    --safe-radius-xl: 32px;
    --safe-radius-full: 50px;
    --safe-transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --safe-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    --safe-font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    --danger: #ff6b6b;
    --danger-light: rgba(255,107,107,0.1);
    --warning: #ffb400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--safe-font);
    background: #f8fbfc;
    color: #1a2a3a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--safe-transition);
}

ul {
    list-style: none;
}

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

/* ========== 导航栏 ========== */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--safe-border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--safe-navy);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.nav-brand svg {
    flex-shrink: 0;
}

.nav-brand .version-tag {
    font-size: 11px;
    font-weight: 500;
    background: var(--safe-teal);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 2px;
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    padding: 6px 0;
    position: relative;
    transition: color var(--safe-transition);
    white-space: nowrap;
}

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

.nav-links a.active {
    color: var(--safe-teal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--safe-teal);
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--safe-teal), var(--safe-teal-dark));
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--safe-shadow-teal);
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,201,167,0.35);
    color: #fff !important;
}

.nav-more {
    position: relative;
}

.nav-more-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--safe-transition);
    font-family: var(--safe-font);
}

.nav-more-btn:hover {
    color: var(--safe-teal);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    border-radius: var(--safe-radius-md);
    box-shadow: var(--safe-shadow-lg);
    border: 1px solid var(--safe-border-strong);
    padding: 12px 0;
    min-width: 180px;
    z-index: 1001;
    margin-top: 8px;
}

.nav-dropdown.open {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 8px 24px;
    font-size: 14px;
    color: #2c3e50;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
    background: rgba(0,201,167,0.08);
    color: var(--safe-teal);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--safe-navy);
    border-radius: 3px;
    transition: 0.3s;
}

/* ========== 对比英雄区 ========== */
.comp-hero {
    background: linear-gradient(145deg, #f0f7fa, #e6f0f5);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.comp-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,201,167,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.comp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,201,167,0.12);
    color: var(--safe-teal-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--safe-teal);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(0,201,167,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(0,201,167,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,201,167,0); }
}

.comp-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--safe-navy);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.comp-hero-text h1 span {
    color: var(--safe-teal);
    position: relative;
    display: inline-block;
}

.comp-hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(0,201,167,0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-lead {
    font-size: 18px;
    color: var(--safe-slate);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 550px;
}

.comp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--safe-teal), var(--safe-teal-dark));
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--safe-shadow-teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-family: var(--safe-font);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,201,167,0.4);
}

.btn-secondary {
    background: rgba(11,43,74,0.06);
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 500;
    color: var(--safe-navy);
    border: 1px solid rgba(11,43,74,0.1);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-family: var(--safe-font);
}

.btn-secondary:hover {
    background: rgba(11,43,74,0.1);
    border-color: rgba(11,43,74,0.2);
    transform: translateY(-2px);
}

.comp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: var(--safe-slate);
}

.comp-hero-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.comp-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 420px;
}

.comp-orb {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-ring {
    position: absolute;
    border: 2px dashed rgba(0,201,167,0.35);
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.cp-r1 { width: 260px; height: 260px; }
.cp-r2 { width: 210px; height: 210px; animation-duration: 14s; animation-direction: reverse; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cp-core {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0,201,167,0.3);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.cp-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--safe-teal);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0,201,167,0.6);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.pp1 { top: 15px; left: 30%; }
.pp2 { top: 30%; right: 5px; animation-delay: 0.5s; }
.pp3 { bottom: 15px; left: 20%; animation-delay: 1s; }
.pp4 { bottom: 25%; right: 15%; animation-delay: 0.3s; }

.comp-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background: #fff;
    border-radius: var(--safe-radius-md);
    padding: 12px 18px;
    box-shadow: var(--safe-shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    animation: float 5s ease-in-out infinite 1.5s;
    border: 1px solid var(--safe-border);
}

.cp-badge-icon {
    font-size: 24px;
}

.comp-badge strong {
    display: block;
    font-size: 14px;
    color: var(--safe-navy);
}

.comp-badge span {
    font-size: 12px;
    color: var(--safe-slate-light);
}

/* ========== 对比承诺条 ========== */
.comp-promise-bar {
    background: #fff;
    border-bottom: 1px solid var(--safe-border);
    padding: 14px 0;
}

.comp-promise-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--safe-slate);
}

.cpp-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.cpp-divider {
    width: 1px;
    height: 18px;
    background: var(--safe-border-strong);
}

/* ========== 通用区块标题 ========== */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--safe-teal-dark);
    background: rgba(0,201,167,0.1);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.section-title p {
    color: var(--safe-slate);
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto;
}

/* ========== 核心差异总览 ========== */
.comp-overview {
    padding: 70px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.overview-card {
    background: #fff;
    border-radius: var(--safe-radius-lg);
    padding: 32px 28px;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
    text-align: center;
    transition: transform 0.25s;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--safe-shadow-md);
}

.overview-card.safe {
    border-color: rgba(0,201,167,0.3);
}

.overview-card.common {
    border-color: rgba(255,107,107,0.3);
}

.ov-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.overview-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 10px;
}

.overview-card p {
    color: var(--safe-slate);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ov-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.overview-card.safe .ov-tag {
    background: rgba(0,201,167,0.1);
    color: var(--safe-teal-dark);
}

.overview-card.common .ov-tag {
    background: rgba(255,107,107,0.1);
    color: #c0392b;
}

.overview-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 50px;
    height: 50px;
    background: var(--safe-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--safe-shadow-md);
}

/* ========== 全维度对比表格 ========== */
.full-comparison {
    padding: 70px 0;
    background: var(--safe-mist);
}

.comp-table-wrapper {
    overflow-x: auto;
    border-radius: var(--safe-radius-lg);
    box-shadow: var(--safe-shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 15px;
    min-width: 600px;
}

.comp-table th,
.comp-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--safe-border);
}

.comp-table th {
    background: var(--safe-navy);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.comp-table td {
    color: var(--safe-slate);
}

.comp-dimension {
    font-weight: 600;
    color: var(--safe-navy);
    text-align: left;
}

.cp-highlight-col {
    background: rgba(0,201,167,0.08);
    color: var(--safe-teal-dark);
    font-weight: 600;
}

.comp-table tr:hover td {
    background: rgba(0,201,167,0.04);
}

/* ========== 隐私立场可视化 ========== */
.privacy-stance {
    padding: 70px 0;
    background: #fff;
}

.stance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stance-card {
    border-radius: var(--safe-radius-lg);
    padding: 30px 28px;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
    transition: transform 0.25s;
}

.stance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--safe-shadow-md);
}

.stance-card.common {
    background: #fff;
    border-color: rgba(255,107,107,0.2);
}

.stance-card.safe {
    background: #fff;
    border-color: rgba(0,201,167,0.3);
}

.stance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.stance-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--safe-navy);
}

.stance-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.stance-badge.danger {
    background: rgba(255,107,107,0.1);
    color: #c0392b;
}

.stance-badge.safe-badge {
    background: rgba(0,201,167,0.1);
    color: var(--safe-teal-dark);
}

.stance-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.sf-node {
    background: var(--safe-mist);
    border-radius: var(--safe-radius-md);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--safe-navy);
    width: 100%;
    text-align: center;
}

.sf-node.danger {
    background: rgba(255,107,107,0.08);
    color: #c0392b;
}

.sf-arrow {
    font-size: 13px;
    color: var(--safe-slate-light);
    font-weight: 500;
}

.stance-note {
    font-size: 13px;
    color: var(--safe-slate-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

.stance-card.common .stance-note {
    color: #c0392b;
}

.stance-card.safe .stance-note {
    color: var(--safe-teal-dark);
}

/* ========== 视觉化对比卡片 ========== */
.visual-compare {
    padding: 70px 0;
    background: var(--safe-mist);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.visual-card {
    background: #fff;
    border-radius: var(--safe-radius-lg);
    padding: 24px 20px;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
    text-align: center;
    transition: transform 0.25s;
}

.visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--safe-shadow-md);
}

.vc-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.visual-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 16px;
}

.vc-bar {
    height: 28px;
    background: var(--safe-mist);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 6px;
}

.vc-bar-fill {
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    transition: width 0.6s ease;
}

.vc-bar-fill.high {
    background: var(--safe-teal);
}

.vc-bar-fill.low {
    background: #ccc;
}

.vc-bar-fill.high-danger {
    background: var(--danger);
}

.vc-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--safe-slate-light);
}

/* ========== 用户关注点对比 ========== */
.user-concerns {
    padding: 70px 0;
    background: #fff;
}

.concern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.concern-card {
    background: #fff;
    border-radius: var(--safe-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
    transition: transform 0.25s;
}

.concern-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--safe-shadow-md);
}

.cc-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 16px;
}

.cc-answer {
    padding: 14px 16px;
    border-radius: var(--safe-radius-md);
    margin-bottom: 10px;
}

.cc-answer.common {
    background: rgba(255,107,107,0.06);
    border: 1px solid rgba(255,107,107,0.2);
}

.cc-answer.safe {
    background: rgba(0,201,167,0.06);
    border: 1px solid rgba(0,201,167,0.2);
}

.cc-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cc-answer.common .cc-label {
    color: #c0392b;
}

.cc-answer.safe .cc-label {
    color: var(--safe-teal-dark);
}

.cc-answer p {
    font-size: 14px;
    color: var(--safe-slate);
    line-height: 1.6;
}

/* ========== 选择指南 ========== */
.choice-guide {
    padding: 70px 0;
    background: var(--safe-mist);
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.choice-card {
    background: #fff;
    border-radius: var(--safe-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
    transition: transform 0.25s;
}

.choice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--safe-shadow-md);
}

.ch-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.choice-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 12px;
}

.choice-list {
    list-style: none;
}

.choice-list li {
    padding: 6px 0;
    color: var(--safe-slate);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.choice-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--safe-teal);
    font-weight: 700;
}

/* ========== 对比数据统计 ========== */
.comp-stats {
    padding: 50px 0;
    background: var(--safe-navy);
    color: #fff;
}

.comp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.cs-item {
    padding: 10px;
}

.cs-item .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--safe-teal);
    letter-spacing: -1px;
    line-height: 1.2;
}

.cs-item .label {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

/* ========== 对比 FAQ ========== */
.comp-faq {
    padding: 70px 0;
    background: #fff;
}

.comp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.comp-faq-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 12px;
}

.comp-faq-text p {
    color: var(--safe-slate);
    font-size: 16px;
    margin-bottom: 24px;
}

.comp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-faq-item {
    background: #fff;
    border-radius: var(--safe-radius-md);
    overflow: hidden;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
}

.comp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--safe-navy);
    text-align: left;
    transition: background 0.2s;
    font-family: var(--safe-font);
}

.comp-faq-question:hover {
    background: rgba(0,201,167,0.05);
}

.comp-faq-toggle {
    font-size: 20px;
    color: var(--safe-teal);
    transition: transform 0.2s;
}

.comp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    color: var(--safe-slate);
    font-size: 14px;
    line-height: 1.7;
    padding: 0 20px;
}

.comp-faq-answer p {
    margin-bottom: 12px;
}

.btn-link {
    color: var(--safe-teal-dark);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.btn-link:hover {
    gap: 10px;
}

/* ========== CTA ========== */
.comp-cta {
    padding: 70px 0;
    background: var(--safe-mist);
}

.comp-cta-box {
    background: #fff;
    border-radius: var(--safe-radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--safe-shadow-sm);
    border: 1px solid var(--safe-border);
}

.comp-cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--safe-navy);
    margin-bottom: 12px;
}

.comp-cta-box p {
    font-size: 18px;
    color: var(--safe-slate);
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.comp-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ========== 页脚 ========== */
.footer {
    background: var(--safe-mist-dark);
    padding: 48px 0 32px;
    border-top: 1px solid var(--safe-border);
}

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

.footer-brand h3 {
    font-size: 22px;
    color: var(--safe-navy);
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--safe-slate-light);
    font-size: 14px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-meta {
    margin-top: 8px;
    font-size: 13px;
    color: var(--safe-slate-light);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--safe-navy);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--safe-slate-light);
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--safe-teal);
}

.footer-bottom {
    border-top: 1px solid var(--safe-border-strong);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--safe-slate-light);
}

.footer-bottom .info-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.footer-bottom .badge {
    background: var(--safe-teal);
    color: #fff;
    padding: 1px 12px;
    border-radius: 20px;
    font-size: 11px;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1024px) {
    .comp-hero-grid,
    .comp-faq-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-lead,
    .comp-faq-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .comp-hero-actions,
    .comp-hero-trust {
        justify-content: center;
    }
    .comp-hero-visual {
        min-height: 350px;
    }
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .overview-divider {
        display: none;
    }
    .stance-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .concern-grid {
        grid-template-columns: 1fr;
    }
    .choice-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .comp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        padding: 20px 30px;
        border-bottom: 1px solid var(--safe-border);
        gap: 12px;
        align-items: flex-start;
        box-shadow: var(--safe-shadow-md);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-more {
        display: block;
        width: 100%;
    }
    .nav-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0 16px;
        background: transparent;
        min-width: auto;
    }
    .nav-dropdown.open {
        display: block;
    }
    .nav-more-btn {
        width: 100%;
        justify-content: space-between;
    }
    .nav-cta {
        margin-top: 8px;
    }
    .comp-hero-text h1 {
        font-size: 36px;
    }
    .hero-lead {
        font-size: 16px;
    }
    .visual-grid {
        grid-template-columns: 1fr;
    }
    .comp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .cpp-divider {
        display: none;
    }
    .comp-promise-inner {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .comp-hero {
        padding: 40px 0;
    }
    .comp-hero-text h1 {
        font-size: 30px;
    }
    .comp-hero-visual {
        min-height: 280px;
    }
    .comp-orb {
        width: 200px;
        height: 200px;
    }
    .cp-r1 { width: 200px; height: 200px; }
    .cp-r2 { width: 160px; height: 160px; }
    .cp-core {
        width: 80px;
        height: 80px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .comp-cta-box {
        padding: 40px 20px;
    }
    .comp-cta-box h2 {
        font-size: 26px;
    }
    .comp-table {
        font-size: 13px;
    }
    .comp-table th,
    .comp-table td {
        padding: 12px 14px;
    }
    .vc-bar {
        height: 22px;
    }
    .vc-bar-fill {
        font-size: 10px;
    }
}