/**
 * 文件名称：pricing.css
 * 文件功能：套餐价格页面专用样式，包含套餐展示、价格卡片、比较表格等样式
 * 创建日期：2026-03-16
 * 维护人员：前端开发团队
 * 
 * 关键功能模块：
 * 1. 滚动条隐藏样式
 * 2. 响应式设计
 * 3. 图片边框样式
 * 4. SVG图标样式
 * 5. 套餐价格页面主容器
 * 6. 套餐切换标签
 * 7. 套餐卡片网格
 * 8. 卡片互动效果
 * 9. 九星服务版卡片样式
 * 10. 下拉提示说明样式
 * 11. 暗黑模式适配
 * 12. 动画效果
 * 
 * 关联文件：
 * - static/js/script.js：与主脚本文件交互
 * - static/js/theme.js：主题切换逻辑
 * - static/css/style.css：主样式文件
 * - static/css/theme.css：主题切换相关样式
 * 
 * 注意事项：
 * - 支持深色模式和浅色模式
 * - 响应式设计适配不同屏幕尺寸
 * - 包含丰富的动画效果
 * - 与主样式文件保持风格一致
 */

/* 套餐价格页面专用样式 */

/* 滚动条隐藏样式 - 兼容各主流浏览器 */
/* Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Edge and IE */
html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* 隐藏滚动条但保留滚动功能 */
.comparison-table-wrapper::-webkit-scrollbar {
    display: none;
}

.comparison-table-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* 响应式设置 */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        touch-action: pan-y;
        overscroll-behavior-x: none;
        padding: 0;
        width: 100%;
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        border-radius: 18px;
    }

    .comparison-table-wrapper::after {
        top: 44px;
        height: 14px;
        background: linear-gradient(180deg, color-mix(in srgb, var(--comparison-surface-strong) 96%, white) 0%, color-mix(in srgb, var(--comparison-surface-strong) 55%, transparent) 54%, transparent 100%);
        opacity: 0.82;
    }

    .comparison-table-wrapper.is-header-elevated::after {
        opacity: 1;
        transform: translateY(2px);
    }

    .comparison-table-wrapper.is-header-elevated .comparison-table thead th,
    .comparison-result .comparison-table-container.is-header-elevated .comparison-table thead th,
    .comparison-table.is-header-elevated thead th {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.75),
            inset 0 -1px 0 rgba(148, 163, 184, 0.28),
            0 10px 18px rgba(15, 23, 42, 0.12),
            0 2px 0 rgba(255, 255, 255, 0.72) !important;
        backdrop-filter: blur(18px) saturate(170%);
        -webkit-backdrop-filter: blur(18px) saturate(170%);
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .comparison-table-wrapper.is-header-elevated .comparison-table thead th::before,
    .comparison-result .comparison-table-container.is-header-elevated .comparison-table thead th::before,
    .comparison-table.is-header-elevated thead th::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0.08) 100%);
        pointer-events: none;
    }

    .comparison-table-wrapper.is-header-elevated::after,
    .comparison-result .comparison-table-container.is-header-elevated::after {
        opacity: 1;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.62) 45%, rgba(255, 255, 255, 0) 100%);
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.10);
        transform: translateY(0);
    }

    .comparison-section {
        padding: 0;
        max-width: 100%;
        margin: 0;
    }

    body {
        margin: 0;
        padding: 0;
        font-size: 14px;
        line-height: 1.5;
    }

    html {
        margin: 0;
        padding: 0;
        font-size: 14px;
    }

    .feature-name {
        font-size: 11px;
        padding-left: 20px;
        line-height: 1.4;
    }

    .feature-subtitle {
        font-size: 10px;
        line-height: 1.3;
    }

    .comparison-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .comparison-title p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* 优化触摸交互 */
    .feature-row {
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .feature-row:active {
        background-color: rgba(228, 70, 125, 0.1);
    }

    .category-row.collapsible {
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .category-row.collapsible:active {
        background-color: rgba(74, 132, 232, 0.1);
    }

    /* 优化表格滚动体验 */
    .comparison-table-wrapper {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* 确保表格内容换行 */
    .comparison-table td {
        word-wrap: break-word;
        white-space: normal;
    }

    /* 优化功能说明按钮 */
    .feature-info-btn {
        width: 18px;
        height: 18px;
    }

    .feature-info-btn svg {
        width: 10px;
        height: 10px;
    }
}

/* 图片边框样式 - 与index.html保持一致 */
.ios-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.dark-mode .ios-logo img {
    filter: none;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* 移除流光特效 */
.ios-logo::before {
    display: none;
}

/* 移除流光动画 */
@keyframes shine {
    0% {
        transform: translateX(-150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    50% {
        transform: translateX(0%) translateZ(0) rotate(30deg);
        opacity: 1;
    }

    85% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }
}

/* 移除第二层流光效果 */
.ios-logo::after {
    display: none;
}

/* 移除第二层流光动画 */
@keyframes shine-secondary {
    0% {
        transform: translateX(-150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    50% {
        transform: translateX(0%) translateZ(0) rotate(30deg);
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(150%) translateZ(0) rotate(30deg);
        opacity: 0;
    }
}

/* 确保图片在暗黑模式下也能正确显示 */
.dark-mode .ios-logo img {
    /* 使用滤镜调整图片在暗黑模式下的显示效果 */
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    /* 增强亮度和对比度，添加白色阴影增强可见性 */
}

/* 暗黑模式下的流光特效 */
.dark-mode .ios-logo::before {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 35%,
            rgba(255, 255, 255, 0.5) 45%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.5) 55%,
            rgba(255, 255, 255, 0) 65%,
            rgba(255, 255, 255, 0) 100%);
}

/* 暗黑模式下的第二层流光 */
.dark-mode .ios-logo::after {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
}



/* SVG图标样式 - 与index.html保持一致 */
.ios-theme-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-main);
    transition: transform 0.3s ease;
}

/* 合作伙伴页面图标样式 */
.benefit-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
    color: var(--accent, var(--primary-color));
}

/* 套餐价格页面主容器 */
.pricing-page {
    padding: 20px 0;
}

/* 版本套餐内容区域 - 移除padding */
#versionPackageContent {
    padding: 0;
}

/* 套餐页面Hero区域 */
.pricing-hero {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto 40px;
}

.pricing-hero .hud-circle {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(228, 70, 125, 0.1) 0%,
            rgba(255, 165, 0, 0.08) 30%,
            rgba(255, 215, 0, 0.05) 50%,
            transparent 70%);
    box-shadow:
        0 0 40px rgba(228, 70, 125, 0.15),
        0 0 80px rgba(255, 165, 0, 0.08),
        inset 0 0 60px rgba(228, 70, 125, 0.05),
        inset 0 0 80px rgba(255, 165, 0, 0.03);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: rotateClockwise 28s linear infinite, pulseRipple 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 交互效果：当鼠标悬停在 pricing-hero 上时 */
.pricing-hero:hover .hud-circle {
    animation-duration: 20s, 3s;
    animation-timing-function: linear, ease-in-out;
}

.pricing-hero:hover .hud-circle:nth-child(1) {
    transform: scale(1.05);
    box-shadow:
        0 0 60px rgba(228, 70, 125, 0.2),
        0 0 120px rgba(255, 165, 0, 0.12),
        0 0 30px rgba(255, 215, 0, 0.1),
        inset 0 0 80px rgba(228, 70, 125, 0.08),
        inset 0 0 100px rgba(255, 165, 0, 0.05);
}

.pricing-hero:hover .hud-circle:nth-child(2) {
    transform: scale(1.1);
    box-shadow:
        0 0 50px rgba(228, 70, 125, 0.18),
        0 0 100px rgba(255, 165, 0, 0.1),
        inset 0 0 70px rgba(228, 70, 125, 0.07),
        inset 0 0 90px rgba(255, 165, 0, 0.04);
}

.pricing-hero:hover .hud-circle:nth-child(3) {
    transform: scale(1.15);
    box-shadow:
        0 0 40px rgba(228, 70, 125, 0.2),
        0 0 80px rgba(255, 165, 0, 0.12),
        inset 0 0 60px rgba(228, 70, 125, 0.09),
        inset 0 0 80px rgba(255, 165, 0, 0.06);
}

/* 暗黑模式下的交互效果 */
.dark-mode .pricing-hero:hover .hud-circle:nth-child(1) {
    box-shadow:
        0 0 60px rgba(74, 132, 232, 0.25),
        0 0 120px rgba(0, 229, 255, 0.16),
        0 0 30px rgba(139, 92, 246, 0.15),
        inset 0 0 80px rgba(74, 132, 232, 0.12),
        inset 0 0 100px rgba(0, 229, 255, 0.08);
}

.dark-mode .pricing-hero:hover .hud-circle:nth-child(2) {
    box-shadow:
        0 0 50px rgba(74, 132, 232, 0.22),
        0 0 100px rgba(0, 229, 255, 0.14),
        inset 0 0 70px rgba(74, 132, 232, 0.1),
        inset 0 0 90px rgba(0, 229, 255, 0.07);
}

.dark-mode .pricing-hero:hover .hud-circle:nth-child(3) {
    box-shadow:
        0 0 40px rgba(74, 132, 232, 0.25),
        0 0 80px rgba(0, 229, 255, 0.16),
        inset 0 0 60px rgba(74, 132, 232, 0.12),
        inset 0 0 80px rgba(0, 229, 255, 0.09);
}

.pricing-hero .hud-circle[style*="dashed"] {
    animation: rotateCounterClockwise 32s linear infinite, breathe 6s ease-in-out infinite 1.5s;
}

/* 为不同大小的 hud-circle 设置不同的动画效果 */
.pricing-hero .hud-circle:nth-child(1) {
    animation: rotateClockwise 28s linear infinite, pulseRipple 5s ease-in-out infinite;
}

.pricing-hero .hud-circle:nth-child(2) {
    animation: rotateCounterClockwise 32s linear infinite, breathe 6s ease-in-out infinite 1.5s;
}

.pricing-hero .hud-circle:nth-child(3) {
    animation: rotateClockwise 24s linear infinite, flicker 4s ease-in-out infinite 2.5s;
}

.pricing-hero .hud-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(45deg,
            rgba(228, 70, 125, 0.3) 0%,
            rgba(255, 165, 0, 0.3) 25%,
            rgba(255, 215, 0, 0.3) 50%,
            rgba(255, 165, 0, 0.3) 75%,
            rgba(228, 70, 125, 0.3) 100%);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    animation: borderGlow 3s ease-in-out infinite, borderRotate 10s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* 优化旋转动画的缓动效果 */
@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateCounterClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* 波纹动画效果 */
@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* 呼吸动画效果 */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* 闪烁动画效果 */
@keyframes flicker {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.9;
    }
}

/* 脉冲波纹组合动画 */
@keyframes pulseRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow:
            0 0 40px rgba(228, 70, 125, 0.15),
            0 0 80px rgba(255, 165, 0, 0.08),
            inset 0 0 60px rgba(228, 70, 125, 0.05),
            inset 0 0 80px rgba(255, 165, 0, 0.03);
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
        box-shadow:
            0 0 60px rgba(228, 70, 125, 0.2),
            0 0 120px rgba(255, 165, 0, 0.12),
            0 0 20px rgba(255, 215, 0, 0.1),
            inset 0 0 80px rgba(228, 70, 125, 0.08),
            inset 0 0 100px rgba(255, 165, 0, 0.05);
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow:
            0 0 40px rgba(228, 70, 125, 0.15),
            0 0 80px rgba(255, 165, 0, 0.08),
            inset 0 0 60px rgba(228, 70, 125, 0.05),
            inset 0 0 80px rgba(255, 165, 0, 0.03);
    }
}

.pricing-hero .subtitle {
    padding: 0 20px;
}

.pricing-hero .tag-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-hero .tag-line .dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
}

.pricing-hero .tag-line .line {
    width: 30px;
    height: 1px;
    background: var(--pink);
}

.pricing-hero .tag-badge {
    background: rgba(228, 70, 125, 0.1);
    color: var(--pink);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-hero .main-title {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.pricing-hero .main-title span {
    display: block;
}

/* 图片容器动画 */
.pricing-hero .main-title-image {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out forwards 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-hero .main-title-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out forwards 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-hero .main-title-image img:hover {
    transform: scale(1.02);
}

/* 暗黑模式下的图片显示为白色 */
.dark-mode .pricing-hero .main-title-image img {
    filter: brightness(0) invert(1);
}

/* 淡入上移动画 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 - 确保手机端动画效果一致 */
@media (max-width: 768px) {
    .pricing-hero .main-title-image {
        animation: fadeInUp 1s ease-out forwards 0.3s;
    }

    .pricing-hero .main-title-image img {
        max-width: 80%;
        animation: fadeInUp 1s ease-out forwards 0.3s;
    }
}

.pricing-hero .subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-hero .button-container {
    position: relative;
    z-index: 1;
}

/* 套餐切换标签 */
.pricing-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    position: relative;
    margin: 30px auto 40px;
    padding: 2px;
    width: min(100%, 420px);
    box-sizing: border-box;
    border: 1px solid rgba(60, 60, 67, 0.12);
    border-radius: 999px;
    background: rgba(118, 118, 128, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    overflow: hidden;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.pricing-tabs-slider {
    position: absolute;
    inset: 2px;
    width: calc((100% - 4px) / 2);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(255, 255, 255, 0.8) inset;
    transform: translateX(0);
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), width 260ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 180ms ease, box-shadow 180ms ease;
    z-index: 0;
    pointer-events: none;
}

.pricing-tab {
    padding: 9px 14px;
    min-height: 34px;
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
    position: relative;
    z-index: 1;
    border-radius: 999px;
    box-shadow: none;
    overflow: hidden;
    color: rgba(28, 28, 30, 0.74);
    min-width: 0;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pricing-tab + .pricing-tab {
    margin-left: 0;
}

.pricing-tab::before {
    content: none;
}

.pricing-tab.active {
    background: transparent;
    color: rgba(28, 28, 30, 0.96);
    border: 0;
    box-shadow: none;
    z-index: 1;
    transform: none;
}

.pricing-tab:hover:not(.active) {
    color: rgba(28, 28, 30, 0.96);
    box-shadow: none;
}

.pricing-tab:active {
    transform: scale(0.985);
}

/* 暗黑模式下的套餐切换标签 */
.dark-mode .pricing-tabs {
    border-color: rgba(84, 84, 88, 0.65);
    background: rgba(84, 84, 88, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dark-mode .pricing-tabs-slider {
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.dark-mode .pricing-tab {
    color: rgba(235, 235, 245, 0.74);
}

.dark-mode .pricing-tab::before {
    content: none;
}

.dark-mode .pricing-tab.active {
    color: #fff;
}

.dark-mode .pricing-tab:hover:not(.active) {
    color: #fff;
}

/* 二年套餐标签样式 */
.pricing-tab .discount-text {
    color: inherit;
    font-size: 11px;
    font-weight: 600;
    margin-left: 6px;
    background: rgba(118, 118, 128, 0.12);
    padding: 2px 6px;
    border-radius: 999px;
}

.dark-mode .pricing-tab .discount-text {
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
}

/* 套餐卡片网格 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* 九星服务版网格容器 */
.pricing-grid-nine-star {
    display: flex;
    justify-content: center;
    margin: 30px auto 60px;
    padding: 0 20px;
    max-width: 1200px;
}

/* 卡片互动效果 */
.payment {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0px;
    transform: translateY(-40px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform, padding;
}

.payment:hover {
    padding: 40px;
    transform: translateY(0);
}

.payment .bg {
    position: absolute;
    bottom: 0;
    height: 70%;
    width: 100%;
    border-radius: 25px;
    background: linear-gradient(225deg, #ffc107, #ff9800);
}

/* 九星服务版卡片样式 */
.nine-star-card {
    width: 100%;
    clip-path: none;
    border-radius: 15px;
    overflow: hidden;
    height: auto;
    transform: translateY(80px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1000;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.05);
    background: #fcfcfc;
    will-change: transform;
}

.nine-star-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 15px;
    z-index: -1;
    transition: background 0.3s ease;
}

.nine-star-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--pink)), transparent);
    opacity: 0.8;
    z-index: 2;
    transition: height 0.3s ease, opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

.nine-star-card:hover::before {
    height: 6px;
    opacity: 1;
}

.nine-star-card.featured::before {
    background: var(--accent, var(--pink));
    height: 6px;
    opacity: 1;
}

.payment:hover .nine-star-card {
    transform: translateY(0);
}

/* 九星服务版内容布局 */
.nine-star-card .pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
}

.nine-star-card .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nine-star-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nine-star-card .feature-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--ios18-subtext);
}

.nine-star-card .feature-list li br {
    margin-bottom: 5px;
}

.nine-star-card .pricing-header {
    text-align: left;
    padding-right: 0;
    border-bottom: 1px dashed color-mix(in srgb, var(--ios18-text) 10%, transparent);
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.nine-star-card .pricing-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--ios18-text);
}

.nine-star-card .pricing-includes {
    font-size: 12px;
    line-height: 1.4;
    color: var(--ios18-subtext);
    margin-bottom: 10px;
    font-style: italic;
}

/* 下拉提示说明样式 */
.tooltip-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.tooltip-trigger {
    font-size: 12px;
    line-height: 1.4;
    color: var(--ios18-subtext);
    font-style: italic;
    cursor: pointer;
    position: relative;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tooltip-trigger:hover {
    background: color-mix(in srgb, var(--ios18-accent) 10%, transparent);
    color: var(--ios18-accent);
}

.tooltip-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--ios18-stroke);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    overflow: hidden;
}

.tooltip-container:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-header {
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--ios18-accent), color-mix(in srgb, var(--ios18-accent) 82%, #00e5ff));
    color: var(--ios18-surface-raised);
    font-weight: 600;
    font-size: 14px;
}

.tooltip-body {
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ios18-text);
}

.tooltip-body p {
    margin: 0 0 12px 0;
}

.tooltip-body ul {
    margin: 0;
    padding-left: 20px;
}

.tooltip-body li {
    margin-bottom: 6px;
}

.tooltip-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 16px;
    width: 16px;
    height: 16px;
    background: var(--ios18-surface-raised);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--ios18-stroke);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
    z-index: -1;
}

.nine-star-card .pricing-desc {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-main);
    font-weight: 600;
}

.nine-star-card .pricing-subdesc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 7px;
}

.nine-star-card .service-highlights {
    margin: 5px 0;
}

.nine-star-card .service-items-row {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.nine-star-card .service-items-row .service-item {
    flex: 1;
}

.nine-star-card .service-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    will-change: transform, box-shadow;
}

.nine-star-card .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nine-star-card .service-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background;
}

.nine-star-card .service-item-header:hover {
    background: rgba(74, 132, 232, 0.05);
}

.nine-star-card .service-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.nine-star-card .service-item-icon {
    font-size: 18px;
    font-weight: bold;
    color: #4a84e8;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.nine-star-card .service-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 12px;
    will-change: max-height;
}

.nine-star-card .service-item-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    padding: 0 0 12px;
}

.nine-star-card .pricing-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--accent, var(--pink));
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* 暗黑模式 */
.dark-mode .nine-star-card .pricing-includes {
    color: var(--ios18-subtext);
}

/* 暗黑模式下的下拉提示说明样式 */
.dark-mode .tooltip-trigger {
    color: var(--ios18-subtext);
}

.dark-mode .tooltip-trigger:hover {
    background: color-mix(in srgb, var(--ios18-accent) 20%, transparent);
    color: color-mix(in srgb, var(--ios18-accent) 82%, white);
}

.dark-mode .tooltip-content {
    background: var(--ios18-surface-raised);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--ios18-stroke);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-mode .tooltip-body {
    color: var(--ios18-text);
}

.dark-mode .tooltip-content::before {
    background: var(--ios18-surface-raised);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--ios18-stroke);
    border-right: none;
    border-bottom: none;
}

.dark-mode .nine-star-card .pricing-desc {
    color: var(--ios18-text);
}

.dark-mode .nine-star-card .pricing-subdesc {
    color: var(--ios18-subtext);
}

.dark-mode .nine-star-card .service-item {
    background: rgba(30, 30, 40, 0.8);
    border-color: var(--ios18-stroke);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode .nine-star-card .service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dark-mode .nine-star-card .service-item-header:hover {
    background: color-mix(in srgb, var(--ios18-accent) 10%, transparent);
}

.dark-mode .nine-star-card .service-item h4 {
    color: var(--ios18-text);
}

.dark-mode .nine-star-card .service-item-icon {
    color: var(--ios18-accent);
}

.dark-mode .nine-star-card .service-item-content p {
    color: var(--ios18-subtext);
}

.dark-mode .nine-star-card .pricing-tagline {
    border-top-color: var(--ios18-stroke);
}

.dark-mode .nine-star-card .pricing-header img {
    filter: brightness(0) invert(1);
}

.dark-mode .nine-star-card::after {
    background: color-mix(in srgb, var(--ios18-surface-raised) 12%, #2a2a2a);
}

/* 暗黑模式下的九星服务版价格信息 */
.dark-mode .nine-star-card .pricing-original {
    color: var(--ios18-subtext);
}

.dark-mode .nine-star-card .pricing-current .period {
    color: var(--ios18-subtext);
}

/* 暗黑模式下的九星服务版分隔线 */
.dark-mode .nine-star-card .pricing-right {
    border-left: 1px dashed var(--ios18-stroke);
}

.dark-mode .nine-star-card .pricing-header {
    border-bottom: 1px dashed var(--ios18-stroke);
}

/* 暗黑模式下的九星服务版按钮 */
.dark-mode .nine-star-card .pricing-btn {
    background: var(--primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dark-mode .nine-star-card .pricing-btn:hover {
    background: var(--primary-light);
    box-shadow: 6px 6px 0 var(--primary-dark), 0 8px 16px rgba(0, 0, 0, 0.3);
}

.nine-star-card .pricing-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    border-left: 1px dashed color-mix(in srgb, var(--ios18-text) 10%, transparent);
    min-height: 300px;
}

.nine-star-card .pricing-price {
    text-align: center;
    margin-bottom: 0;
}

.nine-star-card .pricing-original {
    font-size: 16px;
    color: var(--ios18-subtext);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.nine-star-card .pricing-current {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent, var(--pink));
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-style: italic;
    margin-bottom: 5px;
}

.nine-star-card .pricing-current .currency {
    font-size: 24px;
    font-weight: 700;
}

.nine-star-card .pricing-current .period {
    font-size: 16px;
    color: var(--ios18-subtext);
    font-weight: normal;
    font-style: normal;
}

.nine-star-card .pricing-btn {
    width: 100%;
    max-width: 200px;
    padding: 16px;
    font-size: 16px;
    text-align: center;
}

.nine-star-card .pricing-features {
    columns: 2;
    column-gap: 20px;
    margin: 20px 0;
}

.nine-star-card .pricing-features li {
    break-inside: avoid;
    margin-bottom: 10px;
}

/* 套餐卡片样式 - 基于现有price-card扩展 */
.pricing-card {
    position: relative;
    background: linear-gradient(135deg, color-mix(in srgb, var(--ios18-text) 10%, transparent) 0%, color-mix(in srgb, var(--ios18-text) 5%, transparent) 100%);
    padding: 1px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--pink)), transparent);
    opacity: 0.8;
    z-index: 2;
    transition: height 0.3s ease, opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: var(--ios18-surface-raised);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    z-index: -1;
    transition: background 0.3s ease;
}

/* 暗黑模式下的套餐卡片 */
.dark-mode .pricing-card {
    background: linear-gradient(160deg, color-mix(in srgb, var(--ios18-text) 92%, #0f172a) 0%, color-mix(in srgb, var(--ios18-text) 86%, #1e293b) 100%);
    border-color: var(--ios18-stroke);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24);
}

.dark-mode .pricing-card::after {
    background: color-mix(in srgb, var(--ios18-surface-raised) 12%, #1e293b);
}

.dark-mode .pricing-header h3 {
    color: var(--ios18-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-mode .pricing-header .pricing-desc {
    color: var(--ios18-subtext);
}

.dark-mode .pricing-original {
    color: var(--ios18-subtext);
}

.dark-mode .pricing-current .period {
    color: var(--ios18-subtext);
}

.dark-mode .pricing-features li {
    color: var(--ios18-subtext);
    border-bottom: 1px dashed var(--ios18-stroke);
}

.dark-mode .pricing-features li.included::before {
    color: var(--ios18-success);
}

.dark-mode .pricing-features li.not-included::before,
.dark-mode .pricing-features li.not-included {
    color: var(--ios18-subtext);
}

.dark-mode .pricing-btn {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.92), rgba(37, 99, 235, 0.88)) !important;
    box-shadow: 0 10px 18px rgba(2, 6, 23, 0.28) !important;
    color: #fff !important;
}

.dark-mode .pricing-btn:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.96), rgba(59, 130, 246, 0.92)) !important;
    box-shadow: 0 14px 24px rgba(2, 6, 23, 0.34) !important;
    color: #fff !important;
}

.dark-mode .pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(37, 99, 235, 0.9)) !important;
}

.dark-mode .pricing-card.featured .pricing-btn:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.96), rgba(59, 130, 246, 0.92)) !important;
}

.dark-mode .pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.34);
    animation: cardGlowDark 2s ease-in-out infinite alternate;
}

@keyframes cardGlowDark {
    0% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 12px 32px rgba(74, 132, 232, 0.4);
    }
}

/* 卡片悬停时的流光效果 */
.pricing-card:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

@keyframes cardGlow {
    0% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 12px 32px rgba(74, 132, 232, 0.3);
    }
}



@keyframes glow {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.pricing-card:hover::before {
    height: 6px;
    opacity: 1;
}

/* 推荐套餐样式 */
.pricing-card.featured {
    transform: scale(1.05);
    background: var(--accent, var(--pink));
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.pricing-card.featured::before {
    background: var(--accent, var(--pink));
    height: 6px;
    opacity: 1;
}

/* 推荐标签 */
.pricing-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--pink);
    color: var(--ios18-surface-raised);
    padding: 6px 40px;
    font-size: 11px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 10px rgba(228, 70, 125, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.pricing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

/* 专业版推荐标签 - 绿色 */
.pricing-card#professional .pricing-badge {
    background: linear-gradient(135deg, var(--ios18-success), color-mix(in srgb, var(--ios18-success) 78%, #059669));
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
    animation: pulse-professional 2s infinite;
}

/* 高级标签 - 尊享版 */
.pricing-badge.premium-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 旗舰标签 - 旗舰版 */
.pricing-badge.enterprise-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-badge.top-badge {
    background: linear-gradient(135deg, var(--ios18-accent), color-mix(in srgb, var(--ios18-accent) 78%, #2563eb));
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

/* 徽章悬停效果 */
.pricing-card:hover .pricing-badge {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(228, 70, 125, 0.5);
}

.pricing-card#professional:hover .pricing-badge {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.6);
}

.pricing-card:hover .premium-badge {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
}

.pricing-card:hover .enterprise-badge {
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.6);
}

.pricing-card:hover .top-badge {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.6);
}

/* 脉冲动画 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 70, 125, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(228, 70, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(228, 70, 125, 0);
    }
}

/* 专业版脉冲动画 */
@keyframes pulse-professional {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.premium-badge {
    animation: pulse-premium 2s infinite;
}

.enterprise-badge {
    animation: pulse-enterprise 1.5s infinite;
}



@keyframes pulse-premium {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

@keyframes pulse-enterprise {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}





/* 套餐内容 */
.pricing-content {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 套餐头部 */
.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed color-mix(in srgb, var(--ios18-text) 10%, transparent);
}

.pricing-header h3 {
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    color: var(--ios18-text);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-header h3 {
    transform: scale(1.05);
}

.pricing-header .pricing-desc {
    font-size: 14px;
    color: var(--ios18-subtext);
    line-height: 1.5;
}

/* 价格区域 */
.pricing-price {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.pricing-original {
    font-size: 14px;
    color: var(--ios18-subtext);
    text-decoration: line-through;
    margin-bottom: 8px;
    font-weight: 500;
}

.pricing-current {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent, var(--pink));
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    font-style: italic;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-current .currency {
    font-size: 24px;
    font-weight: 700;
}

.pricing-current .period {
    font-size: 16px;
    color: var(--ios18-subtext);
    font-weight: normal;
    font-style: normal;
}

.pricing-card:hover .pricing-current {
    transform: scale(1.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured .pricing-current {
    color: var(--accent, var(--pink));
}

/* 功能列表 */
.pricing-features {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--ios18-subtext);
    font-size: 13px;
    border-bottom: 1px dashed color-mix(in srgb, var(--ios18-text) 5%, transparent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.included::before {
    content: '✓';
    color: var(--ios18-success);
    font-weight: bold;
    font-size: 14px;
    min-width: 20px;
}

.pricing-features li.not-included::before {
    content: '×';
    color: var(--ios18-subtext);
    font-weight: bold;
    font-size: 14px;
    min-width: 20px;
}

.pricing-features li.not-included {
    color: var(--ios18-subtext);
}

/* 套餐按钮基础样式 */
.pricing-btn {
    width: 100%;
    padding: 16px;
    background: var(--ios18-text);
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    clip-path: polygon(8px 0, 100% 0, 100% 70%, calc(100% - 8px) 100%, 0 100%, 0 30%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 按钮文字动画 */
.pricing-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

/* 按钮渐变背景效果 */
.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pricing-btn:hover::before {
    transform: translateX(100%);
}

/* 按钮悬停效果 */
.pricing-btn:hover {
    background: var(--accent, var(--pink));
    box-shadow: 6px 6px 0 var(--ios18-text), 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translate(-3px, -3px);
}

/* 按钮悬停文字效果 */
.pricing-btn:hover span {
    transform: scale(1.08);
}

/* 按钮点击效果 */
.pricing-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0 var(--ios18-text);
    transition: all 0.1s ease;
}

.pricing-btn:active span {
    transform: scale(0.98);
}

/* 推荐套餐按钮样式 */
.pricing-card.featured .pricing-btn {
    background: var(--accent, var(--pink));
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--ios18-success);
}

/* 专业版按钮 - 绿色系 */
.pricing-card#professional .pricing-btn {
    background: var(--ios18-text);
}

.pricing-card#professional .pricing-btn:hover {
    background: var(--ios18-success);
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--ios18-text), 0 8px 16px rgba(16, 185, 129, 0.4);
}

/* 尊享版按钮 - 紫色系 */
.pricing-card#premium .pricing-btn {
    background: var(--ios18-text);
}

.pricing-card#premium .pricing-btn:hover {
    background: #8b5cf6;
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--ios18-text), 0 8px 16px rgba(139, 92, 246, 0.4);
}

/* 旗舰版按钮 - 红色系 */
.pricing-card#enterprise .pricing-btn {
    background: var(--ios18-text);
}

.pricing-card#enterprise .pricing-btn:hover {
    background: #ef4444;
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--ios18-text), 0 8px 16px rgba(239, 68, 68, 0.4);
}

/* 套餐对比表格 */
.comparison-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
}

.comparison-title {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.searchBox--comparison {
    margin: 0 auto;
    width: 260px;
    max-width: 92vw;
    background: color-mix(in srgb, var(--ios18-surface-raised) 88%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.searchBox--comparison.active {
    width: 320px;
}

.searchBox--comparison .searchInput {
    left: 40px;
    width: calc(100% - 80px);
}

.comparison-title h2 {
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 0;
}

.comparison-title p {
    color: #888;
    font-size: 14px;
    margin-bottom: 0;
}

/* 搜索框样式 */
.searchBox {
    position: relative;
    width: 60px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 247, 255, 0.68));
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: none;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid rgba(60, 60, 67, 0.08);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.searchBox.active {
    width: 300px;
    border-radius: 20px;
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
    border-color: rgba(74, 132, 232, 0.18);
}

.search {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    color: var(--ios18-text);
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    cursor: pointer;
    z-index: 2;
    border-right: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.search svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--ios18-subtext);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease, transform 0.35s ease;
}

.searchBox.active .search {
    opacity: 0.4;
    transform: scale(0.92);
}

.close {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    color: var(--ios18-text);
    justify-content: center;
    align-items: center;
    transform: scale(0.88);
    opacity: 0;
    cursor: pointer;
    font-size: 1em;
    transition: opacity 0.35s ease 0.08s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
    z-index: 2;
    border-left: none;
    pointer-events: none;
}

.close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--ios18-subtext);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease;
}

.searchBox.active .close {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.18s;
    pointer-events: auto;
}

.searchInput {
    position: absolute;
    left: 40px;
    width: calc(100% - 80px);
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.searchBox.active .searchInput {
    opacity: 1;
    transform: translateX(0);
}

.searchInput input {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 0 15px 0 8px;
    background: transparent;
    color: var(--ios18-text);
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    caret-color: auto;
    -webkit-tap-highlight-color: transparent;
}

.searchInput input:focus {
    outline: none;
    box-shadow: none;
    caret-color: auto;
}

.searchInput input::placeholder {
    color: var(--ios18-subtext);
}

.table-controls {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid rgba(60, 60, 67, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.table-controls::-webkit-scrollbar {
    display: none;
}

.table-controls {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.table-control-btn,
#toggleAllBtn.table-control-btn,
#toggleAllBtn.toggle-btn,
#compareFeaturesBtn.table-control-btn,
#compareFeaturesBtn.toggle-btn,
#cardModeBtn.table-control-btn,
#cardModeBtn.toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 13px;
    white-space: nowrap;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(28, 28, 30, 0.94);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.table-control-btn::before,
#toggleAllBtn::before,
#compareFeaturesBtn::before,
#cardModeBtn::before {
    content: none;
}

.table-control-btn:hover,
#toggleAllBtn:hover,
#compareFeaturesBtn:hover,
#cardModeBtn:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.table-control-btn:active,
#toggleAllBtn:active,
#compareFeaturesBtn:active,
#cardModeBtn:active {
    transform: translateY(0);
}

.toggle-btn {
    overflow: hidden;
}

.toggle-btn[data-state="expanded"] {
    background: rgba(0, 122, 255, 0.10);
    color: rgb(0, 122, 255);
    box-shadow: none;
}

.toggle-btn[data-state="expanded"]:hover {
    background: rgba(0, 122, 255, 0.16);
}

.table-controls > * + * {
    border-left: 1px solid rgba(60, 60, 67, 0.10);
}

.toggle-btn:disabled {
    cursor: not-allowed;
    background: color-mix(in srgb, var(--ios18-subtext) 18%, var(--ios18-surface-raised)) !important;
    border-color: color-mix(in srgb, var(--ios18-subtext) 28%, var(--ios18-surface-raised)) !important;
    color: var(--ios18-subtext) !important;
    transform: none !important;
    box-shadow: none !important;
}

.dark-mode .table-control-btn,
.dark-mode #toggleAllBtn,
.dark-mode #compareFeaturesBtn,
.dark-mode #cardModeBtn {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.88));
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dark-mode .table-control-btn::before,
.dark-mode #toggleAllBtn::before,
.dark-mode #compareFeaturesBtn::before,
.dark-mode #cardModeBtn::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 58%);
}

.toggle-icon {
    display: flex;
    align-items: center;
    transition: transform 180ms ease, opacity 180ms ease;
    flex-shrink: 0;
}

.toggle-btn:hover .toggle-icon {
    transform: translateY(-1px) scale(1.03);
}

.toggle-btn[data-state="expanded"] .toggle-icon {
    transform: rotate(180deg) scale(1.04);
}

.toggle-text {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* 按钮动画效果 */
.toggle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: color-mix(in srgb, var(--ios18-surface-raised) 20%, transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.toggle-btn:hover::before {
    width: 300px;
    height: 300px;
}

.toggle-btn:active::before {
    width: 100px;
    height: 100px;
    transition: width 0.1s, height 0.1s;
}

.comparison-table-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 800px;
    min-height: 300px;
    background: transparent;
    border: none;
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

/* 表格滚动按钮样式 - iOS风格 */
.table-scroll-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.scroll-buttons-container {
    display: grid;
    grid-template-areas:
        ". up ."
        "left down right";
    grid-template-columns: 44px 44px 44px;
    grid-template-rows: 44px 44px;
    gap: 4px;
}

.scroll-btn.scroll-up {
    grid-area: up;
}

.scroll-btn.scroll-left {
    grid-area: left;
}

.scroll-btn.scroll-down {
    grid-area: down;
}

.scroll-btn.scroll-right {
    grid-area: right;
}

.table-scroll-buttons.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .table-scroll-buttons {
        display: block;
        right: 12px;
        bottom: 104px;
        gap: 8px;
    }
}

.scroll-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--ios18-surface-raised);
    color: var(--ios18-text);
    border: 1px solid var(--ios18-stroke);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.scroll-btn:hover {
    background: color-mix(in srgb, var(--ios18-surface-raised) 92%, var(--ios18-stroke));
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.dark-mode .scroll-btn {
    background: color-mix(in srgb, var(--ios18-surface-raised) 32%, #2c2c2e);
    color: var(--ios18-surface-raised);
    border: 1px solid var(--ios18-stroke);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.dark-mode .scroll-btn:hover {
    background: color-mix(in srgb, var(--ios18-surface-raised) 18%, #3a3a3c);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.scroll-btn.touch-active,
.dark-mode .scroll-btn.touch-active {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.scroll-btn.long-press,
.dark-mode .scroll-btn.long-press {
    transform: scale(0.85);
    opacity: 0.6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background: color-mix(in srgb, var(--ios18-surface-raised) 62%, #c8c8c8);
}

.dark-mode .scroll-btn.long-press {
    opacity: 0.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    background: color-mix(in srgb, var(--ios18-surface-raised) 28%, #3c3c46);
}

.scroll-btn:focus-visible {
    outline: 2px solid var(--ios18-accent);
    outline-offset: 2px;
}

.scroll-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: color-mix(in srgb, var(--ios18-surface-raised) 50%, transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

.dark-mode .scroll-btn::after {
    background: color-mix(in srgb, var(--ios18-surface-raised) 20%, transparent);
}

.scroll-btn:active::after {
    width: 60px;
    height: 60px;
}

/* 按钮禁用状态 */
.scroll-btn:disabled,
.scroll-btn[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    background: color-mix(in srgb, var(--ios18-surface-raised) 60%, #c8c8c8);
    transform: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dark-mode .scroll-btn:disabled,
.dark-mode .scroll-btn[disabled] {
    opacity: 0.2;
    background: color-mix(in srgb, var(--ios18-surface-raised) 30%, #32323c);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 按钮图标样式 */
.scroll-btn svg {
    width: 20px;
    height: 20px;
    z-index: 2;
    position: relative;
}

/* 确保所有按钮的过渡效果一致 */
.scroll-btn,
.scroll-btn svg,
.scroll-btn::after {
    transition: all 0.2s ease;
}

/* 手机端显示滚动按钮 */
@media (max-width: 768px) {
    .table-scroll-buttons {
        display: flex;
    }

    .comparison-table-wrapper {
        padding-right: 50px;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 100%;
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 100%;
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 14px;
    }
}

/* FAQ样式 */
/* FAQ样式 */
.pricing-faq {
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

.pricing-faq-title {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-faq-title h2 {
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.pricing-faq .tab {
    position: relative;
    background: var(--ios18-surface-raised);
    padding: 0 20px 20px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    contain: layout paint;
}

.pricing-faq .tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.pricing-faq .tab input {
    appearance: none;
}

.pricing-faq .tab label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 18px 0;
    transition: color 180ms ease;
}

.pricing-faq .tab label::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ios18-stroke);
    border-bottom: 2px solid var(--ios18-stroke);
    transform: rotate(45deg);
    transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease;
    will-change: transform;
    pointer-events: none;
}

.pricing-faq .tab:hover label::after {
    border-color: var(--ios18-text);
}

.pricing-faq .tab input:checked~label::after {
    border-color: var(--ios18-text);
    transform: rotate(225deg);
}

.pricing-faq .tab label h2 {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ios18-surface-raised);
    font-size: 1.15em;
    border-radius: 10px;
    margin-right: 12px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.pricing-faq .tab input:checked~label h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.16);
    font-size: 8em;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-faq .tab label h3 {
    position: relative;
    font-weight: 600;
    color: var(--ios18-text);
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pricing-faq .tab input:checked~label h3 {
    background: var(--ios18-surface-raised);
    padding: 4px 12px;
    color: var(--ios18-text);
    border-radius: 999px;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
}

.pricing-faq .tab .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.24s ease;
    opacity: 0;
}

.pricing-faq .tab input:checked~.content {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.24s ease;
}

.pricing-faq .tab .content p {
    position: relative;
    padding: 8px 0;
    color: var(--ios18-subtext);
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.24s ease, transform 0.24s ease, color 0.24s ease;
    will-change: opacity, transform;
}

.pricing-faq .tab input:checked~.content p {
    color: var(--ios18-text);
    opacity: 1;
    transform: translateY(0);
}

.pricing-faq .tab:nth-child(1) label h2 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--ios18-accent) 65%, #ff6b6b) 10%, color-mix(in srgb, var(--ios18-accent) 55%, #ee5a24) 100%);
}

.pricing-faq .tab:nth-child(2) label h2 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--ios18-success) 65%, #70f570) 10%, color-mix(in srgb, var(--ios18-success) 55%, #49c628) 100%);
}

.pricing-faq .tab:nth-child(3) label h2 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--ios18-accent) 65%, #3c8ce7) 10%, color-mix(in srgb, var(--ios18-accent) 55%, #00eaff) 100%);
}

.pricing-faq .tab:nth-child(4) label h2 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--ios18-accent) 55%, #ff96f9) 10%, color-mix(in srgb, var(--ios18-accent) 55%, #c32bac) 100%);
}

.pricing-faq .tab:nth-child(5) label h2 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--ios18-accent) 62%, #fd6e6a) 10%, color-mix(in srgb, var(--ios18-success) 55%, #ffc600) 100%);
}

/* 暗黑模式下的FAQ样式 */
.dark-mode .pricing-faq .tab {
    background: color-mix(in srgb, var(--ios18-surface-raised) 12%, #1e1e28);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.dark-mode .pricing-faq-title h2 {
    color: var(--ios18-text);
}

.dark-mode .pricing-faq .tab label h3 {
    color: var(--ios18-text);
}

.dark-mode .pricing-faq .tab:hover label::after {
    color: var(--ios18-text);
}

.dark-mode .pricing-faq .tab input:checked~label h3 {
    background: color-mix(in srgb, var(--ios18-surface-raised) 10%, #1e1e28);
    color: var(--ios18-text);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dark-mode .pricing-faq .tab .content p {
    color: var(--ios18-text);
}

.dark-mode .pricing-faq .tab input:checked~.content p {
    color: var(--ios18-surface-raised);
}

/* HUD circles 样式 */
.hud-circle {
    will-change: transform;
    transform: translateZ(0px);
}

.hud-circle:nth-child(1) {
    width: 50vw;
    height: 50vw;
    right: -25vw;
    top: -10vw;
}

.hud-circle:nth-child(2) {
    width: 30vw;
    height: 30vw;
    right: 10vw;
    bottom: -15vw;
    border: 2px dashed color-mix(in srgb, var(--ios18-accent) 15%, transparent);
}

.hud-circle:nth-child(3) {
    width: 15vw;
    height: 15vw;
    left: -7.5vw;
    top: 30vw;
    border: 1px solid color-mix(in srgb, var(--ios18-accent) 10%, transparent);
    animation-duration: 25s;
}

/* 主标题图片样式 */
.main-title-image img {
    max-width: 120%;
    height: auto;
    margin: 0 -10%;
}

/* 二年套餐标签样式 */
.pricing-tab .discount-text {
    color: var(--ios18-accent);
}

/* 套餐卡片 accent 变量 */
.pricing-card#standard {
    --accent: var(--ios18-accent);
}

.pricing-card#professional {
    --accent: var(--ios18-success);
}

.pricing-card#premium {
    --accent: #8b5cf6;
}

.pricing-card#enterprise {
    --accent: #ef4444;
}

.pricing-card#nineStar {
    --accent: #f59e0b;
}

/* 九星服务版徽章样式 */
.pricing-badge.custom-badge {
    background: linear-gradient(135deg, var(--ios18-accent) 0%, #ff9800 100%);
}

/* 九星服务版图片样式 */
.nine-star-card .pricing-header img {
    height: 40px;
}


.comparison-section {
    padding: 0 10px;
    margin: 40px auto;
    max-width: 100%;
    overflow: visible;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: center;
    background-clip: padding-box;
}

.comparison-table th {
    font-weight: 700;
    font-size: 15px;
    position: sticky;
    top: 0;
    z-index: 20;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    width: 34%;
    min-width: 220px;
    font-size: 15px;
    white-space: normal;
}

.feature-name {
    font-size: 11px;
    padding-left: 20px;
    line-height: 1.35;
}

.feature-subtitle {
    font-size: 10px;
    line-height: 1.35;
}

.comparison-table th:first-child {
    border-top-left-radius: 12px;
}

.comparison-table th:last-child {
    border-top-right-radius: 12px;
}

.comparison-table td {
    font-size: 13px;
}

.comparison-table .check {
    font-weight: 700;
}

.comparison-table .optional {
    font-size: 14px;
    font-weight: 700;
}

.comparison-table .unlimited,
.comparison-table .feature {
    font-weight: 700;
}

.comparison-table .category-row {
    font-weight: 700;
    font-size: 14px;
}

.comparison-table .category-row td {
    padding: 16px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-row.collapsible {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.category-row.collapsible:hover {
    background: rgba(74, 132, 232, 0.08);
}

.category-row.collapsible .collapse-icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
    color: #4a84e8;
    transition: transform 0.3s ease;
}

.category-row.collapsible.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

/* 功能行交互样式 */
.feature-group {
    transition: opacity 420ms ease, transform 680ms cubic-bezier(0.18, 1.18, 0.24, 1);
    transform-origin: top;
}

.feature-group.is-collapsing {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.96);
}

.feature-group.is-expanding {
    opacity: 0;
    transform: translateY(-14px) scaleY(0.94);
}

.feature-group.is-expanded-ready {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}

.feature-row {
    cursor: pointer;
    transition: background-color 0.28s ease, opacity 0.36s ease, transform 0.36s cubic-bezier(0.18, 1.18, 0.24, 1);
    position: relative;
}

.feature-group.is-collapsing .feature-row,
.feature-group.is-expanding .feature-row {
    opacity: 0;
    transform: translateY(-7px);
}

.feature-group.is-expanded-ready .feature-row {
    opacity: 1;
    transform: translateY(0);
}

.feature-row:hover {
    background: rgba(228, 70, 125, 0.03);
}

.feature-row.active {
    background: transparent;
    position: relative;
    z-index: 1;
}

.feature-row.active td,
.feature-row.active td:first-child {
    position: relative;
    z-index: 2;
}

.feature-row.sub-feature td:first-child {
    padding-left: 40px;
}

.feature-row.sub-feature .feature-text {
    font-size: 13px;
    color: #666;
}


.feature-row td {
    position: relative;
    vertical-align: middle;
    padding: 14px 16px;
}

.feature-row td:first-child {
    width: 30%;
}

.feature-container {
    position: relative;
    width: 100%;
}

.feature-name {
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #1e293b;
    gap: 8px;
    position: relative;
    padding-left: 25px;
}



/* 功能徽章样式 */
.feature-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 10px;
    /* 移除 margin-left，因为已经有 gap: 8px 提供间距 */
    vertical-align: middle;
}

/* 新功能徽章样式 */
.feature-badge.new-feature {
    margin-left: -4px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

/* 暗黑模式下的新功能徽章 */
.dark-mode .feature-badge.new-feature {
    background: linear-gradient(135deg, #ff8787, #ff5252);
    box-shadow: 0 2px 4px rgba(255, 82, 82, 0.4);
}

.feature-subtitle {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    font-weight: normal;
    line-height: 1.4;
}

.dark-mode .feature-subtitle {
    color: #94a3b8;
}

.feature-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    background: #f5f5f7;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
    color: #6e6e73;
    padding: 0;
    flex-shrink: 0;
    position: static;
    margin-left: 2px;
    overflow: hidden;
    vertical-align: middle;
}

.feature-info-btn svg {
    width: 12px;
    height: 12px;
}

.feature-note-header svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #667eea;
}

/* 旧版说明按钮/气泡样式已合并到统一规则 */

.feature-row.active .feature-note {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-note-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px 10px;
    background: rgba(102, 126, 234, 0.15);
    color: #4c51bf;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-note-header svg {
    flex-shrink: 0;
    color: #667eea;
}

.feature-note-header span {
    flex: 1;
}

.feature-note-content {
    padding: 18px;
    background: rgba(255, 255, 255, 0.4);
}

.feature-note-content p {
    margin: 0;
    color: #2d3748;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
}

/* iOS 风格说明气泡已由上方统一样式覆盖 */

/* 说明弹层改为与对比条带统一的克制说明层 */
.feature-note {
    background: rgba(251, 251, 253, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.05);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    border-radius: 18px;
}

.feature-note::before {
    background: rgba(251, 251, 253, 0.98);
    border-top: 1px solid rgba(17, 17, 17, 0.05);
    border-left: 1px solid rgba(17, 17, 17, 0.05);
}

.feature-note-header {
    background: rgba(245, 245, 247, 0.94);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.feature-note-content {
    background: rgba(255, 255, 255, 0.7);
}

.feature-info-btn {
    background-image: radial-gradient(45% 45% at 30% 28%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%), linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 182, 182, 0.5));
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 3px 8px rgba(0, 0, 0, 0.16);
}


.dark-mode .feature-name {
    color: #f1f5f9;
}

/* 合作伙伴页面样式已迁移到其它样式模块 */

/* 合作伙伴类型 */
.partner-types {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

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

.type-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1px;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent, var(--pink)), transparent);
    opacity: 0.8;
    z-index: 2;
    transition: height 0.3s ease, opacity 0.3s ease;
    animation: borderGlow 2s linear infinite;
}

.type-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 19px;
    z-index: -1;
    transition: background 0.3s ease;
}

.type-card.featured {
    transform: scale(1.05);
    background: var(--accent, var(--pink));
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.type-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.type-card:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

.type-icon {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.type-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.type-card:hover .type-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent, var(--pink));
}

.type-card h3 {
    font-size: 26px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin: 20px 25px 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.type-card:hover h3 {
    transform: scale(1.05);
}

.type-features {
    list-style: none;
    margin: 0 25px 30px;
    padding: 0;
    flex: 1;
}

.type-features li {
    padding: 12px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: color 0.3s ease;
}

.type-features li:last-child {
    border-bottom: none;
}

.type-card:hover .type-features li {
    color: var(--text-main);
}

.type-description {
    margin: 20px 25px 30px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    flex: 1;
    transition: color 0.3s ease;
}

.type-card:hover .type-description {
    color: var(--text-main);
}

.contact-btn {
    width: calc(100% - 50px);
    margin: 0 25px 30px;
    padding: 16px;
    background: var(--text-main);
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
    clip-path: polygon(8px 0, 100% 0, 100% 70%, calc(100% - 8px) 100%, 0 100%, 0 30%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.contact-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.contact-btn:hover::before {
    transform: translateX(100%);
}

.contact-btn:hover {
    background: var(--accent, var(--pink));
    box-shadow: 6px 6px 0 var(--text-main), 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translate(-3px, -3px);
}

.contact-btn:hover span {
    transform: scale(1.08);
}

.contact-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0 var(--text-main);
    transition: all 0.1s ease;
}

.contact-btn:active span {
    transform: scale(0.98);
}

/* 暗黑模式下的联系按钮 */
.dark-mode .contact-btn {
    background: var(--primary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #1a1a1a !important;
}

.dark-mode .contact-btn:hover {
    background: var(--primary-light);
    box-shadow: 6px 6px 0 var(--primary-dark), 0 8px 16px rgba(0, 0, 0, 0.3);
    color: #1a1a1a !important;
}


/* 经销合作商优势解读 */
.partner-advantages {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.partner-advantages h3 {
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.advantage-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1px;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    text-align: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 15px;
    z-index: -1;
    transition: background 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

.advantage-icon {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    transition: transform 0.3s ease, color 0.3s ease;
}


/* 暗黑模式下的功能对比表格完整样式 */
.dark-mode .feature-name {
    color: #f1f5f9 !important;
}

.dark-mode .feature-badge {
    background: rgba(74, 132, 232, 0.2) !important;
    color: #00e5ff !important;
}

.dark-mode .feature-note {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-mode .feature-note-header {
    background: rgba(74, 132, 232, 0.2) !important;
    color: #00e5ff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-mode .feature-note-content {
    background: rgba(30, 41, 59, 0.8) !important;
}

.dark-mode .feature-note-content p {
    color: #e2e8f0 !important;
}


.advantage-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.advantage-card:hover .advantage-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent, var(--pink));
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 20px 15px;
    transition: color 0.3s ease;
}

.advantage-card:hover h4 {
    color: var(--text-main);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.advantage-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 10px;
    transition: color 0.3s ease;
}

.advantage-card:hover p {
    color: var(--text-main);
}

/* 暗黑模式下的合作伙伴页面样式 */
.dark-mode .partner-hero {
    background: rgba(30, 30, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dark-mode .partner-hero .tag-line {
    color: #94a3b8;
}

.dark-mode .partner-hero .partner-title {
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-mode .partner-hero .partner-subtitle {
    color: #94a3b8;
}

.dark-mode .type-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode .type-card::after {
    background: #1e293b;
}

.dark-mode .type-card h3 {
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dark-mode .type-features li {
    color: #94a3b8;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.dark-mode .type-card:hover .type-features li {
    color: #f1f5f9;
}

.dark-mode .type-description {
    color: #94a3b8;
}

.dark-mode .type-card:hover .type-description {
    color: #f1f5f9;
}

.dark-mode .advantage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dark-mode .advantage-card::after {
    background: #1e293b;
}

.dark-mode .advantage-card h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card p {
    color: #94a3b8;
}

.dark-mode .advantage-card:hover h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card:hover p {
    color: #f1f5f9;
}

.dark-mode .partner-advantages h3 {
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 暗黑模式下的搜索框 */
.dark-mode .searchBox {
    background: #1e293b;
    box-shadow: none;
}

.searchBox--comparison {
    margin: 0 auto;
}

.dark-mode .search svg {
    stroke: #94a3b8;
}

.dark-mode .close svg {
    stroke: #94a3b8;
}

.dark-mode .searchInput input {
    color: #f1f5f9;
}

.dark-mode .searchInput input::placeholder {
    color: #64748b;
}

.dark-mode .searchBox.active .close {
    color: #94a3b8;
}

.advantage-card p:last-child {
    margin-bottom: 30px;
}

/* 合作流程 */
.partner-process {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.partner-process h3 {
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    padding: 1px;
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    text-align: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 15px;
    z-index: -1;
    transition: background 0.3s ease;
}

.process-step:hover {
    transform: translateY(-12px);
    background: var(--accent, var(--pink));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    animation: cardGlow 2s ease-in-out infinite alternate;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(228, 70, 125, 0.3);
    animation: pulse 2s infinite;
    z-index: 2;
}

.process-icon {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-step:hover .process-icon svg {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent, var(--pink));
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 20px 20px 15px;
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: var(--text-main);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 10px;
    transition: color 0.3s ease;
}

.process-step:hover p {
    color: var(--text-main);
}

.process-step p:last-child {
    margin-bottom: 30px;
}

/* 暗黑模式适配 */
.dark-mode .partner-hero {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
}



.dark-mode .partner-hero .hud-circle {
    background: radial-gradient(circle at 30% 30%, rgba(74, 132, 232, 0.15) 0%, rgba(0, 229, 255, 0.12) 30%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
    box-shadow: 0 0 40px rgba(74, 132, 232, 0.2), 0 0 80px rgba(0, 229, 255, 0.12), inset 0 0 60px rgba(74, 132, 232, 0.08), inset 0 0 80px rgba(0, 229, 255, 0.05);
}

.dark-mode .partner-hero .partner-title {
    color: #f1f5f9;
}

.dark-mode .partner-hero .partner-subtitle {
    color: #94a3b8;
}

.dark-mode .type-card::after {
    background: #2a2a2a;
}

.dark-mode .type-card h3 {
    color: #f1f5f9;
}

.dark-mode .type-features li {
    color: #94a3b8;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .type-card:hover .type-features li {
    color: #f1f5f9;
}

.dark-mode .type-description {
    color: #94a3b8;
}

.dark-mode .type-card:hover .type-description {
    color: #f1f5f9;
}

.dark-mode .advantage-card::after {
    background: #1e293b;
}

.dark-mode .advantage-card h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card:hover h4 {
    color: #f1f5f9;
}

.dark-mode .advantage-card p {
    color: #94a3b8;
}

.dark-mode .advantage-card:hover p {
    color: #f1f5f9;
}

.dark-mode .process-step::after {
    background: #1e293b;
}

.dark-mode .process-step h4 {
    color: #f1f5f9;
}

.dark-mode .process-step:hover h4 {
    color: #f1f5f9;
}

.dark-mode .process-step p {
    color: #94a3b8;
}

.dark-mode .process-step:hover p {
    color: #f1f5f9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .partner-hero .partner-title {
        font-size: 32px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .type-card.featured {
        transform: scale(1);
    }

    .type-card.featured:hover {
        transform: translateY(-12px);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .partner-advantages h3,
    .partner-process h3 {
        font-size: 24px;
    }

    .advantage-card h4,
    .process-step h4 {
        font-size: 16px;
    }

    .advantage-card p,
    .process-step p {
        font-size: 13px;
    }
}

/* 动画效果 */
@keyframes cardGlow {
    0% {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    100% {
        box-shadow: 0 12px 32px rgba(74, 132, 232, 0.3);
    }
}

@keyframes borderGlow {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(228, 70, 125, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(228, 70, 125, 0);
    }
}

@keyframes rotateClockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 40px rgba(228, 70, 125, 0.15), 0 0 80px rgba(255, 165, 0, 0.08), inset 0 0 60px rgba(228, 70, 125, 0.05), inset 0 0 80px rgba(255, 165, 0, 0.03);
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
        box-shadow: 0 0 60px rgba(228, 70, 125, 0.2), 0 0 120px rgba(255, 165, 0, 0.12), 0 0 20px rgba(255, 215, 0, 0.1), inset 0 0 80px rgba(228, 70, 125, 0.08), inset 0 0 100px rgba(255, 165, 0, 0.05);
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 40px rgba(228, 70, 125, 0.15), 0 0 80px rgba(255, 165, 0, 0.08), inset 0 0 60px rgba(228, 70, 125, 0.05), inset 0 0 80px rgba(255, 165, 0, 0.03);
    }
}


.dark-mode .feature-note {
    background: rgba(36, 36, 38, 0.98);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.dark-mode .feature-note::before {
    background: rgba(36, 36, 38, 0.98);
    border-top-color: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .feature-note-header {
    background: rgba(44, 44, 46, 0.94);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-mode .feature-note-content {
    background: rgba(28, 28, 30, 0.72);
}

.dark-mode .feature-info-btn {
    background: #2c2c2e;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: #a1a1a6;
}

.dark-mode .feature-info-btn:hover {
    background: #3a3a3c;
    box-shadow: none;
}

.dark-mode .comparison-section {
    margin: 60px auto;
}

.dark-mode .comparison-title h2 {
    color: #fff;
}

.dark-mode .comparison-title p {
    color: #94a3b8;
}

.dark-mode .toggle-btn:hover {
    background: #4a84e8;
    color: white;
}

.dark-mode .toggle-btn[data-state="expanded"] {
    background: #4a84e8;
    color: white;
}

.dark-mode .toggle-btn[data-state="expanded"]:hover {
    background: #3a6bc0;
    border-color: #3a6bc0;
}

.dark-mode .toggle-btn:disabled {
    background: rgba(74, 132, 232, 0.3) !important;
    border-color: rgba(74, 132, 232, 0.5) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* 暗黑模式下的搜索框样式 */
.dark-mode .searchBox {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1e293b;
}

.dark-mode .search {
    color: #94a3b8;
}

.dark-mode .searchInput input {
    background: #1e293b;
    color: #f1f5f9;
}

.dark-mode .searchInput input::placeholder {
    color: #64748b;
}

.dark-mode .close {
    color: #94a3b8;
}

.dark-mode .close:hover {
    color: #f1f5f9;
}


.dark-mode .pricing-faq-title h2 {
    color: #fff;
}

.dark-mode .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .faq-question {
    color: #fff;
}

.dark-mode .faq-answer {
    color: #aaa;
}

/* 版本套餐和合作伙伴按钮样式 */
.pricing-hero .button-container {
    display: flex;
    width: 100%;
    margin-top: 30px;
    gap: 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.pricing-hero .button-container button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    transition: all 0.3s ease;
}

.pricing-hero .button-container button:first-child {
    background: #6366f1;
    color: white;
}

.pricing-hero .button-container button:last-child {
    background: #f43f5e;
    color: white;
}

.pricing-hero .button-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-hero .button-container button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pricing-hero .button-container button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 深色模式适配 */
.dark-mode .pricing-hero .button-container button:first-child {
    background: #4f46e5;
}

.dark-mode .pricing-hero .button-container button:last-child {
    background: #e11d48;
}

.dark-mode .pricing-hero .button-container button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-mode .pricing-hero .button-container button:active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 合作伙伴页面深色模式适配 */
.dark-mode .benefit-card {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .benefit-card h3 {
    color: #fff;
}

.dark-mode .benefit-card p {
    color: #aaa;
}

.dark-mode .step-card {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .step-card h4 {
    color: #fff;
}

.dark-mode .step-card p {
    color: #aaa;
}

.dark-mode .partner-steps h3 {
    color: #fff;
}

.dark-mode .partner-contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.dark-mode .partner-contact h3 {
    color: #fff;
}

.dark-mode .partner-contact p {
    color: #aaa;
}

.dark-mode .contact-btn {
    background: #fff;
    color: var(--text-main);
}

.dark-mode .contact-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 4px 4px 0 #fff;
}

.dark-mode .contact-btn:active {
    box-shadow: 2px 2px 0 #fff;
}

/* 内容区域样式 */
.content-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content-section {
    display: none;
    width: 100%;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 合作伙伴页面样式 */
.partner-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.partner-hero::before {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    right: -10vw;
    top: -10vw;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.partner-hero::after {
    content: '';
    position: absolute;
    width: 30vw;
    height: 30vw;
    left: 10vw;
    bottom: -10vw;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.partner-hero .tag-line {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.partner-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    margin: 20px 0 10px;
    position: relative;
    z-index: 2;
}

.partner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.partner-benefits {
    padding: 0 20px;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.partner-steps {
    padding: 0 20px;
    margin-bottom: 60px;
}

.partner-steps h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-main);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.partner-contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    border-radius: 0;
    margin: 0 20px 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-contact::before {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    right: -10vw;
    top: -10vw;
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.partner-contact h3 {
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: var(--text-main);
}

.partner-contact p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    padding: 16px 32px;
    background: var(--text-main);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    clip-path: polygon(8px 0, 100% 0, 100% 70%, calc(100% - 8px) 100%, 0 100%, 0 30%);
}

.contact-btn:hover {
    background: var(--primary-color);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--text-main);
}

.contact-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--text-main);
    transition: all 0.1s ease;
}

/* 合作伙伴标识墙样式 */
.partner-logos {
    padding: 60px 20px;
    background: var(--card-bg);
    margin-bottom: 60px;
}

.partner-logos h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-main);
}

.partner-logos p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.logo-item {
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.logo-item:hover .logo-placeholder {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* 轮播容器样式 */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: var(--text-main);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* 响应式轮播 */
@media (max-width: 768px) {
    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

/* 暗黑模式适配 */
.dark-mode .carousel-btn {
    background: rgba(30, 41, 59, 0.9);
    color: #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dark-mode .carousel-btn:hover {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.dark-mode .logo-placeholder {
    background: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dark-mode .logo-placeholder rect {
    fill: #334155;
}

.dark-mode .logo-placeholder text {
    fill: #94a3b8;
}

.dark-mode .logo-item:hover .logo-placeholder {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* 优化英雄区域视觉效果 */
.partner-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.partner-hero::before {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    right: -10vw;
    top: -10vw;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.partner-hero::after {
    content: '';
    position: absolute;
    width: 30vw;
    height: 30vw;
    left: 10vw;
    bottom: -10vw;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* 优化福利卡片设计 */
.benefit-card {
    background: var(--card-bg);
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 95% 100%, 0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    opacity: 0.8;
    z-index: 2;
    transition: 0.3s;
}

.benefit-card:hover::before {
    opacity: 1;
    height: 6px;
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .pricing-hero .button-container {
        flex-direction: column;
    }

    .pricing-hero .button-container button {
        width: 100%;
        margin-bottom: 10px;
    }

    .partner-title {
        font-size: 2rem;
    }

    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .logo-placeholder {
        padding: 15px;
    }

    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .partner-contact {
        margin: 0 10px 40px;
    }
}

@media (max-width: 480px) {
    .partner-hero {
        padding: 30px 15px;
    }

    .partner-title {
        font-size: 1.8rem;
    }

    .benefit-card,
    .step-card {
        padding: 20px;
    }

    .partner-contact {
        padding: 30px 15px;
    }

    .pricing-hero .button-container button {
        padding: 14px 20px;
        font-size: 14px;
    }

    .pricing-hero .button-container button svg {
        width: 18px;
        height: 18px;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    /* 九星服务版响应式布局 - 保持左右布局 */
    .nine-star-card .pricing-content {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        padding: 30px;
    }

    .nine-star-card .pricing-header {
        text-align: left;
        padding-right: 0;
    }

    .nine-star-card .pricing-header h3 {
        font-size: 24px;
    }

    .nine-star-card .pricing-current {
        font-size: 40px;
    }

    .nine-star-card .pricing-right {
        padding-left: 20px;
    }

    .nine-star-card .pricing-features {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 0 15px 40px;
    }

    /* 九星服务版响应式布局 */
    .pricing-grid-nine-star {
        padding: 0 15px;
    }

    .nine-star-card {
        width: 100%;
        max-width: 400px;
    }

    .nine-star-card .pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .nine-star-card .service-items-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nine-star-card .service-items-row .service-item {
        flex: 1 1 calc(50% - 5px);
    }

    .nine-star-card .pricing-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px dashed rgba(0, 0, 0, 0.1);
        padding-top: 25px;
        align-items: center;
    }

    .nine-star-card .pricing-header {
        text-align: center;
    }

    .nine-star-card .pricing-price {
        text-align: center;
    }

    .nine-star-card .pricing-btn {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .pricing-hero .main-title {
        font-size: 42px;
    }

    .comparison-table {
        min-width: 100%;
    }

    .comparison-table th {
        padding: 18px 20px;
        font-size: 16px;
    }

    .comparison-table td {
        padding: 14px 16px;
        font-size: 12px;
    }

    .pricing-faq {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 30px 15px;
    }

    .pricing-hero .main-title {
        font-size: 36px;
    }

    .pricing-hero .subtitle {
        font-size: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 0 15px 40px;
    }

    .pricing-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 360px);
        padding: 2px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-tab {
        padding: 8px 10px;
        font-size: 13px;
        min-width: 0;
    }

    .comparison-section {
        padding: 0 15px;
    }

    .comparison-title h2 {
        font-size: 24px;
    }

    .comparison-table-wrapper {
        padding: 0 8px;
    }

    .comparison-table-wrapper>img {
        display: block;
        width: min(100%, 980px);
        height: auto;
        max-height: 320px;
        object-fit: contain;
        margin: 0 auto 14px;
    }

    .comparison-table {
        width: 100%;
        min-width: 100%;
        table-layout: fixed;
    }

    .comparison-table th {
        padding: 16px 18px;
        font-size: 14px;
    }

    .comparison-table td {
        padding: 12px 14px;
        font-size: 11px;
        word-break: break-word;
    }

    .pricing-faq {
        padding: 0 15px;
    }

    .pricing-faq-title h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pricing-hero .main-title {
        font-size: 28px;
    }

    .comparison-table-wrapper>img {
        display: block;
        width: min(92%, 760px);
        height: auto;
        max-height: 240px;
        object-fit: contain;
        margin: 0 auto 12px;
    }

    .comparison-table {
        width: 100%;
        min-width: 100%;
        table-layout: fixed;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 10px;
    }

    .comparison-table th {
        font-size: 12px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 40%;
    }

    .pricing-content {
        padding: 25px 20px;
    }

    .pricing-current {
        font-size: 36px;
    }

    .pricing-features li {
        font-size: 12px;
        padding: 10px 0;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .pricing-hero .main-title {
        font-size: 24px;
    }

    .pricing-tab {
        padding: 8px 16px;
        font-size: 12px;
    }

    .pricing-content {
        padding: 20px 15px;
    }

    .pricing-current {
        font-size: 32px;
    }

    .pricing-btn {
        padding: 12px;
        font-size: 14px;
    }

    .comparison-table {
        min-width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
        font-size: 9px;
    }

    .comparison-table th {
        font-size: 11px;
    }
}

/* 移动端功能说明横向显示 */
@media (max-width: 768px) {
    .feature-container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .feature-name {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        min-width: 0;
    }

    .feature-text {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .feature-note {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: auto;
        width: min(340px, calc(100vw - 24px));
        max-width: none;
        margin: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        animation: none;
        border-radius: 16px;
        transition: all 0.28s ease-out;
        max-height: none;
        overflow: visible;
        z-index: 999;
    }

    .feature-row.active .feature-note {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: slideIn 0.3s ease-out forwards;
        z-index: 60;
    }

    @media (min-width: 769px) {
        .feature-note {
            display: none !important;
        }
    }

    .feature-row,
    .feature-row.active {
        position: relative;
        z-index: 1;
    }

    .feature-row.active td,
    .feature-row.active td:first-child {
        z-index: 2;
    }

    .feature-row td {
        position: relative;
        z-index: 1;
        padding: 10px 12px 18px;
        vertical-align: top;
    }

    .feature-note-header,
    .feature-note-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .feature-note-header {
        padding-top: 12px;
        padding-bottom: 10px;
        font-size: 12px;
    }

    .feature-note-content {
        padding-top: 12px;
        padding-bottom: 14px;
        font-size: 12px;
        line-height: 1.55;
    }

    .feature-note::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-container {
        gap: 8px;
    }

    .feature-row td {
        padding: 8px 10px 16px;
    }

    .feature-note {
        width: calc(100vw - 20px);
        left: 0;
        border-radius: 14px;
    }

    .feature-note-header,
    .feature-note-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .feature-note-header {
        font-size: 11px;
    }

    .feature-note-content {
        font-size: 11px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .feature-row td {
        padding: 10px 12px;
    }

    .feature-note {
        font-size: 11px;
        padding: 10px 12px;
    }
}

/* 功能对比表增强：语义/可访问性/移动端可读性 */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
    background-clip: padding-box;
}

.comparison-table thead th {
    position: sticky !important;
    top: 0 !important;
    z-index: 140 !important;
    color: #1d1d1f !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
    background: transparent !important;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    -webkit-text-fill-color: #1d1d1f !important;
    box-shadow: none !important;
    transition: none;
}

.comparison-table thead th:first-child {
    z-index: 160 !important;
    min-width: 180px !important;
    background: transparent !important;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 10;
    min-width: 180px;
    background: var(--comparison-surface-strong, #fff) !important;
    box-shadow: 2px 0 8px rgba(15, 23, 42, 0.06);
}

.comparison-table-wrapper,
.comparison-result .comparison-table-container {
    position: relative;
    isolation: isolate;
    overflow-y: auto;
    overflow-x: hidden;
}

.comparison-table-wrapper::after,
.comparison-result .comparison-table-container::after {
    content: '';
    position: sticky;
    top: 54px;
    left: 0;
    display: block;
    width: 100%;
    height: 12px;
    pointer-events: none;
    z-index: 115;
    background: linear-gradient(180deg, rgba(245, 245, 247, 0.28) 0%, rgba(245, 245, 247, 0.08) 55%, rgba(245, 245, 247, 0) 100%);
    opacity: 0.38;
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.comparison-table-wrapper.is-header-elevated::after,
.comparison-result .comparison-table-container.is-header-elevated::after {
    opacity: 0.58;
}

.comparison-table-wrapper.is-header-elevated .comparison-table thead th,
.comparison-result .comparison-table-container.is-header-elevated .comparison-table thead th {
    background: transparent !important;
    color: var(--comparison-text) !important;
    border-bottom-color: color-mix(in srgb, var(--comparison-border) 40%, transparent) !important;
    border-right-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.comparison-table-wrapper.is-header-elevated .comparison-table thead th:first-child,
.comparison-result .comparison-table-container.is-header-elevated .comparison-table thead th:first-child {
    color: var(--comparison-muted) !important;
    border-right-color: transparent !important;
}

.comparison-table-wrapper.is-header-elevated .comparison-table thead th:not(:first-child),
.comparison-result .comparison-table-container.is-header-elevated .comparison-table thead th:not(:first-child) {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.comparison-table thead,
.comparison-table thead tr {
    position: sticky;
    top: 0;
    z-index: 120 !important;
}

.comparison-table tbody,
.comparison-table tbody tr,
.comparison-table tbody td,
.comparison-table tbody th {
    z-index: auto;
}

.feature-row.active td:first-child {
    z-index: 24;
    background: var(--comparison-surface-strong, #fff) !important;
}


.comparison-table thead,
.comparison-table thead tr,
.comparison-table thead th {
    visibility: visible !important;
    opacity: 1 !important;
}

.comparison-table .is-col-highlight {
    background: var(--comparison-accent-soft) !important;
}

.comparison-table td[data-state="supported"] {
    color: var(--comparison-accent);
}

.comparison-table td[data-state="unsupported"] {
    color: #ef4444;
    font-weight: 600;
}

.comparison-table td[data-state="optional"] {
    color: #f59e0b;
    font-weight: 600;
}

#diffOnlyBtn.active {
    background: var(--pink, #e4467d);
    color: #fff;
    border-color: var(--pink, #e4467d);
}

.comparison-reading-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 10px 0 12px;
    font-size: 13px;
    color: #64748b;
}

.comparison-reading-guide strong {
    color: #111827;
}

.comparison-status-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f5f5f7;
    color: #6e6e73;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(17, 17, 17, 0.06);
    letter-spacing: -0.01em;
}

.feature-badge {
    margin-left: -1px;
    margin-right: 0;
    padding: 1px 6px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.5;
    color: #1d1d1f;
    background: #f5f5f7;
    border: 1px solid rgba(17, 17, 17, 0.06);
    font-weight: 500;
}

#backToTableTopBtn {
    text-decoration: none;
}

.comparison-cards {
    display: none;
    margin-top: 10px;
    overflow-x: hidden;
    overflow-y: visible;
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

.comparison-card-group-title {
    position: sticky;
    top: 0;
    z-index: 2;
    display: block;
    width: fit-content;
    margin: 12px auto 8px;
    padding: 8px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1d1d1f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease, opacity 220ms ease;
    will-change: transform, box-shadow;
}

.comparison-card-group-title::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 55%);
}

.comparison-card-item {
    position: relative;
    overflow: visible;
    border-radius: 16px;
    padding: 16px 14px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease, opacity 220ms ease;
    will-change: transform, box-shadow;
}

.comparison-card-item.expanded {
    border-color: rgba(74, 132, 232, 0.32);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.14);
}

.comparison-card-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.35), transparent 55%);
    pointer-events: none;
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    position: relative;
}

.comparison-card-title-left {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.comparison-card-toggle {
    flex: 1;
    min-width: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    color: inherit;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.comparison-card-item h4 {
    margin: 0;
    font-size: 12px;
    color: #1d1d1f;
    font-weight: 600;
    text-align: left;
    letter-spacing: -0.02em;
    line-height: 1.28;
}

.card-toggle-icon {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 13px;
    color: #6b7280;
    background: transparent;
    border: 0;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease, opacity 220ms ease;
    opacity: 0.72;
}

.card-toggle-icon svg {
    width: 12px;
    height: 12px;
}

.comparison-card-item:hover .card-toggle-icon {
    background: transparent;
    color: #4b5563;
    opacity: 1;
}

.comparison-card-item.expanded .card-toggle-icon {
    transform: rotate(180deg) scale(1.04);
}

.comparison-card-body {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    will-change: height, opacity, transform;
    transition: height 440ms cubic-bezier(0.18, 1, 0.32, 1), opacity 220ms ease, transform 320ms cubic-bezier(0.18, 1, 0.32, 1);
}

.comparison-card-item.expanded .comparison-card-body {
    opacity: 1;
    transform: translateY(0);
}

.comparison-card-item ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.comparison-card-item li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid rgba(17, 17, 17, 0.03);
    font-size: 12px;
    line-height: 1.35;
    color: #1d1d1f;
}

.comparison-card-item li:first-child {
    border-top: 0;
}

.comparison-card-item li span {
    font-weight: 400;
    color: #1d1d1f;
    flex: 1;
    min-width: 0;
    letter-spacing: -0.01em;
}

.state-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    font-weight: 400;
    border: 0;
    flex-shrink: 0;
    white-space: nowrap;
    background: transparent;
    color: #6e6e73;
    letter-spacing: -0.01em;
}

.state-pill svg {
    flex-shrink: 0;
    display: block;
}

.state-pill svg path {
    stroke: currentColor;
}

.state-pill.is-supported,
.state-pill.is-unsupported,
.state-pill.is-optional,
.state-pill.is-custom {
    color: #6e6e73;
    background: transparent;
    border-color: transparent;
}

.comparison-card-group-title {
    position: sticky;
    top: 8px;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    margin: 16px 4px 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
}

.tooltip-container {
    position: relative;
    display: inline-flex;
}

.tooltip-container .relative {
    position: relative;
    display: inline-flex;
}

.comparison-note-toggle {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(209, 213, 219, 0.95);
    background: rgba(255, 255, 255, 0.66);
    color: #0a84ff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 4px 12px rgba(15, 23, 42, 0.08);
    transition:
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
    overflow: hidden;
}

.comparison-note-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.1));
    opacity: 0.65;
    pointer-events: none;
}

.comparison-note-toggle .info-icon {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1), filter 160ms ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.65));
}

.comparison-note-toggle:hover .info-icon {
    transform: scale(1.03);
}

.comparison-note-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(10, 132, 255, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 6px 14px rgba(15, 23, 42, 0.1);
}

.comparison-note-toggle.active {
    border-color: rgba(10, 132, 255, 0.3);
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.96), rgba(88, 86, 214, 0.9));
    color: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28) inset,
        0 8px 18px rgba(10, 132, 255, 0.18);
}

.comparison-note-toggle.active:hover {
    animation: none;
}

.comparison-note-toggle:active,
.comparison-note-toggle.active:active {
    transform: translateY(0) scale(0.94);
}

.tooltip-bubble {
    display: none;
}

    transform: translateY(4px) scale(0.98);
    transform-origin: top left;
    width: 156px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 12px;
    font-size: 12px;
    color: #1e293b;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1), top 300ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 24;
    backdrop-filter: blur(16px) saturate(165%);
    -webkit-backdrop-filter: blur(16px) saturate(165%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    will-change: transform, opacity;
}

.tooltip-bubble::before {
    content: '';
    position: absolute;
    left: 12px;
    top: -6px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.42);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.tooltip-bubble.shift-right {
    left: 0;
    right: auto;
}

.tooltip-bubble.shift-left {
    left: auto;
    right: 0;
}

.tooltip-bubble.shift-left::before {
    left: auto;
    right: 12px;
}

.comparison-note-toggle:hover+.tooltip-bubble,
.comparison-note-toggle:focus+.tooltip-bubble {
    opacity: 1;
    top: 44px;
    transform: translateY(0) scale(1);
}

.comparison-note-content {
    display: none;
    font-size: 11px;
    line-height: 1.5;
    color: #6b7280;
}

.comparison-note-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dark-mode .comparison-card-item {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: none;
}

.dark-mode .comparison-card-item::before {
    background: none;
}

.dark-mode .comparison-card-item.expanded {
    background: transparent;
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: none;
}

.dark-mode .comparison-card-item h4,
.dark-mode .comparison-card-item li {
    color: #e2e8f0;
}

.dark-mode .comparison-note-content {
    background: rgba(30, 41, 59, 0.56);
    border-color: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.dark-mode .comparison-card-item li {
    border-top-color: rgba(148, 163, 184, 0.28);
}

.dark-mode .comparison-card-item li:first-child {
    border-top-color: transparent;
}

.dark-mode .comparison-card-item li span {
    color: #cbd5e1;
}

.dark-mode .comparison-card-group-title {
    color: #cbd5e1;
    background: transparent;
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: none;
}

.dark-mode .comparison-note-toggle {
    border-color: rgba(96, 165, 250, 0.28);
    background:
        radial-gradient(140% 120% at 28% 24%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 46%, rgba(255, 255, 255, 0.02) 100%),
        linear-gradient(180deg, rgba(59, 130, 246, 0.26), #1e293b);
    color: #bfdbfe;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 18px rgba(2, 6, 23, 0.26);
}

.dark-mode .comparison-note-content {
    background: #1e293b;
    border-color: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.dark-mode .tooltip-bubble {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #e2e8f0;
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(148, 163, 184, 0.1);
}

.dark-mode .tooltip-bubble::before {
    background: rgba(30, 41, 59, 0.95);
    border-left: 1px solid rgba(148, 163, 184, 0.3);
    border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.dark-mode .comparison-note-toggle::before {
    background: radial-gradient(120% 100% at 30% 20%, rgba(255, 255, 255, 0.18), transparent 58%);
}

.dark-mode .comparison-note-toggle:hover {
    border-color: rgba(96, 165, 250, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 10px 22px rgba(59, 130, 246, 0.18),
        0 0 0 3px rgba(59, 130, 246, 0.08);
    animation: infoPillBreath 1.8s ease-in-out infinite;
}

.dark-mode .comparison-note-toggle.active {
    background:
        radial-gradient(140% 120% at 28% 24%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.01) 100%),
        linear-gradient(180deg, rgba(37, 99, 235, 0.94), rgba(79, 70, 229, 0.88));
    border-color: rgba(147, 197, 253, 0.42);
    color: #eff6ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 12px 24px rgba(37, 99, 235, 0.22);
}

.dark-mode .comparison-note-content {
    background:
        radial-gradient(120% 120% at 20% 10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 45%, rgba(255, 255, 255, 0.01) 100%),
        linear-gradient(180deg, rgba(30, 41, 59, 0.74), rgba(15, 23, 42, 0.62));
    border-color: rgba(148, 163, 184, 0.22);
    color: #cbd5e1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 22px rgba(2, 6, 23, 0.26);
}

.dark-mode .pricing-faq .tab {
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.24);
}

.dark-mode .pricing-faq .tab:hover {
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.3);
}

.dark-mode .pricing-faq .tab label::after {
    color: rgba(226, 232, 240, 0.28);
}

.dark-mode .pricing-faq .tab input:checked~label h2 {
    color: rgba(255, 255, 255, 0.12);
}

.dark-mode .pricing-faq .tab input:checked~label h3 {
    background: rgba(15, 23, 42, 0.88);
    color: #f8fafc;
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.2);
}


:root {
    --motion-micro: 220ms;
    --motion-panel: 300ms;
}

/* 首列层级、文本可读性 */
.category-row td:first-child {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.feature-row td:first-child {
    border-left: 2px solid transparent;
}

.feature-row.sub-feature td:first-child {
    padding-left: 46px;
    border-left-color: rgba(148, 163, 184, 0.28);
}

.feature-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    cursor: pointer;
}

.feature-text.expanded {
    display: block;
    -webkit-line-clamp: initial;
    overflow: visible;
}

@media (min-width: 769px) {
    .feature-note {
        display: none !important;
    }
}

/* 对比结果一眼看懂（保留原有文本样式，不加状态底色） */
.comparison-table td.state-cell {
    transition: color var(--motion-micro) ease;
}

.symbol-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(148, 163, 184, 0.12);
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
}

.symbol-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.symbol-legend-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-weight: 700;
    flex: 0 0 auto;
}

.symbol-legend-icon.check {
    color: #4a84e8;
}

.symbol-legend-icon.optional {
    color: #94a3b8;
}

.symbol-legend-icon.cross {
    color: #ef4444;
}

/* 搜索命中与空状态 */
.feature-row.filtered-out,
.category-row.filtered-out {
    display: none !important;
}

.feature-text mark {
    background: rgba(59, 130, 246, 0.2);
    color: inherit;
    border-radius: 4px;
    padding: 0 2px;
}

.feature-search-empty {
    display: none;
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
    color: #475569;
    text-align: center;
    font-size: 13px;
}

/* 动效统一 */
.feature-info-btn,
.state-pill,
.toggle-btn,
.searchBox,
.searchInput input {
    transition-duration: var(--motion-micro) !important;
}

.feature-note,
.feature-note-content,
.comparison-card-body,
.comparison-note-content {
    transition-duration: var(--motion-panel) !important;
}

/* 可访问性焦点样式 */
.feature-info-btn:focus-visible,
.feature-text:focus-visible,
.toggle-btn:focus-visible,
#featureSearch:focus-visible {
    outline: none;
    outline-offset: 0;
}

.dark-mode .feature-info-btn:focus-visible,
.dark-mode .feature-text:focus-visible,
.dark-mode .toggle-btn:focus-visible,
.dark-mode #featureSearch:focus-visible {
    outline: none;
}

/* iOS 透明液态玻璃风格：多维度对比弹窗 */
.feature-comparison-modal,
.comparison-result {
    --comparison-surface: rgba(255, 255, 255, 0.72);
    --comparison-surface-strong: rgba(255, 255, 255, 0.92);
    --comparison-surface-soft: rgba(255, 255, 255, 0.5);
    --comparison-border: rgba(255, 255, 255, 0.58);
    --comparison-text: #0f172a;
    --comparison-muted: #475569;
    --comparison-accent: #2563eb;
    --comparison-accent-soft: rgba(37, 99, 235, 0.12);
    --comparison-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    background: rgba(15, 23, 42, 0.16) !important;
    color: var(--comparison-text);
}

.dark-mode .feature-comparison-modal,
.dark-mode .comparison-result {
    --comparison-surface: rgba(15, 23, 42, 0.72);
    --comparison-surface-strong: rgba(15, 23, 42, 0.92);
    --comparison-surface-soft: rgba(15, 23, 42, 0.5);
    --comparison-border: rgba(148, 163, 184, 0.2);
    --comparison-text: #f8fafc;
    --comparison-muted: #cbd5e1;
    --comparison-accent: #60a5fa;
    --comparison-accent-soft: rgba(96, 165, 250, 0.14);
    --comparison-shadow: 0 18px 40px rgba(2, 6, 23, 0.38);
    background: rgba(2, 6, 23, 0.18) !important;
    color: var(--comparison-text);
}

.comparison-result .result-content {
    background: linear-gradient(155deg, var(--comparison-surface), rgba(255, 255, 255, 0.48)) !important;
    border: 1px solid var(--comparison-border) !important;
    box-shadow: var(--comparison-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    color: var(--comparison-text);
}

.feature-comparison-modal .modal-header,
.comparison-result .result-header,
.feature-comparison-modal .modal-footer,
.comparison-result .result-footer,
.comparison-result .summary-hero,
.comparison-result .summary-panel,
.comparison-result .comparison-table-container,
.comparison-result .stat-item {
    background: var(--comparison-surface-strong) !important;
    border-color: var(--comparison-border) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    padding: 16px !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
}

.comparison-result .result-header,
.comparison-result .result-footer {
    padding: 12px 16px !important;
    margin-bottom: 12px !important;
}

.feature-comparison-modal .mode-btn,
.feature-comparison-modal .preset-btn,
.feature-comparison-modal .reset-btn,
.feature-comparison-modal .compare-btn,
.comparison-result .back-btn,
.comparison-result .stat-item,
.comparison-result .feature-category-toggle {
    background: var(--comparison-surface-strong) !important;
    border: 1px solid var(--comparison-border) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 8px 16px rgba(15, 23, 42, 0.08);
    color: var(--comparison-text) !important;
}

.feature-comparison-modal .mode-btn.active,
.feature-comparison-modal .compare-btn,
.comparison-result .stat-item.is-active,
.comparison-result .feature-category-toggle:hover {
    background: var(--comparison-surface) !important;
    color: var(--comparison-text) !important;
    border-color: var(--comparison-border) !important;
}

.feature-comparison-modal .feature-checkbox,
.feature-comparison-modal .version-checkbox,
.feature-comparison-modal .category-title,
.comparison-result .comparison-table-container,
.comparison-result .summary-panel,
.comparison-result .summary-hero,
.comparison-result .diff-ring-single-chart,
.comparison-result .diff-ring-single-core {
    background: var(--comparison-surface-soft) !important;
    border: 1px solid var(--comparison-border) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 8px 16px rgba(15, 23, 42, 0.08);
}

.feature-comparison-modal .feature-filter-input {
    background: var(--comparison-surface-soft) !important;
    border: 1px solid var(--comparison-border) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    color: var(--comparison-text);
}

.summary-conclusion-pill {
    margin: 10px 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--comparison-surface-strong);
    border: 1px solid var(--comparison-border);
    color: var(--comparison-text);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.summary-conclusion-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--comparison-accent-soft);
    color: var(--comparison-accent);
    font-size: 12px;
    flex-shrink: 0;
}

.summary-conclusion-text {
    line-height: 1.2;
}

.diff-summary-split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.diff-summary-left {
    min-height: 0;
}

.diff-module-list {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.45) transparent;
}

.diff-module-list::-webkit-scrollbar {
    width: 6px;
}

.diff-module-list::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 999px;
}

.diff-module-list::-webkit-scrollbar-track {
    background: transparent;
}

.diff-ring-legend {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.diff-ring-legend::-webkit-scrollbar {
    height: 6px;
}

.diff-ring-legend::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.4);
    border-radius: 999px;
}

.diff-ring-legend-item {
    flex: 0 0 auto;
    min-width: 138px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64));
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    color: var(--ios18-text);
    scroll-snap-align: start;
}

.diff-ring-legend-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.09);
}

.diff-ring-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.diff-ring-legend-name {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.diff-ring-legend-meta {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--comparison-muted);
    white-space: nowrap;
}

.diff-module-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--item-accent) 18%, rgba(255, 255, 255, 0.72));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.diff-module-item:hover,
.diff-module-item.is-active {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.09);
    border-color: color-mix(in srgb, var(--item-accent) 42%, rgba(255, 255, 255, 0.72));
}

.diff-module-name {
    font-weight: 600;
    color: var(--ios18-text);
}

    .diff-module-count {
        min-width: 34px;
        height: 28px;
        padding: 0 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: color-mix(in srgb, var(--item-accent) 16%, rgba(255, 255, 255, 0.72));
        color: color-mix(in srgb, var(--item-accent) 72%, #0f172a);
        font-weight: 700;
        font-size: 12px;
    }

    @media (max-width: 768px) {
        .diff-summary-split {
            grid-template-columns: 1fr;
        }

        .diff-module-list {
            max-height: 260px;
        }
    }

    .comparison-result .summary-headline-row h4,
    .comparison-result .summary-panel h4,
    .comparison-result .stat-label,
    .comparison-result .stat-value,
    .comparison-result .timeline-node-label,
    .comparison-result .timeline-node-value,
    .comparison-result .summary-path-caption,
    .comparison-result .feature-category,
    .comparison-result .category-state,
    .comparison-result .diff-ring-center-title,
    .comparison-result .diff-ring-center-value,
    .comparison-result .diff-ring-center-subtitle,
    .comparison-result .comparison-table th,
    .comparison-result .comparison-table td,
    .comparison-result .result-header h3,
    .comparison-result .result-header p,
    .comparison-result .result-footer {
        color: var(--comparison-text);
    }

    .comparison-result .result-header h3,
    .comparison-result .summary-headline-row h4,
    .comparison-result .summary-panel h4 {
        font-size: 20px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .comparison-result .result-header p,
    .comparison-result .summary-panel p,
    .comparison-result .summary-path-caption,
    .comparison-result .timeline-node-label,
    .comparison-result .timeline-node-value,
    .comparison-result .stat-label,
    .comparison-title p,
    .comparison-card-item li,
    .comparison-card-item li span,
    .status-chip,
    .state-pill {
        font-size: 12px;
        line-height: 1.45;
        letter-spacing: -0.01em;
    }

    .comparison-result .stat-value,
    .comparison-result .diff-ring-center-value {
        font-size: 18px;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .comparison-result .summary-panel p,
    .comparison-result .diff-module-name,
    .comparison-result .category-state,
    .comparison-result .summary-path-caption,
    .comparison-result .result-header p {
        color: var(--comparison-muted);
    }

    .comparison-result .comparison-table th,
    .comparison-result .comparison-table td {
        border-color: color-mix(in srgb, var(--comparison-border) 72%, transparent) !important;
    }

    .comparison-result .comparison-table-container {
        background: var(--comparison-surface-strong) !important;
        border: 1px solid var(--comparison-border) !important;
        border-radius: 28px;
        box-shadow: var(--comparison-shadow), inset 0 1px 0 color-mix(in srgb, var(--comparison-surface-strong) 88%, white) !important;
        backdrop-filter: blur(26px) saturate(180%);
        -webkit-backdrop-filter: blur(26px) saturate(180%);
        padding: 12px;
    }

    .comparison-result .comparison-table {
        color: var(--comparison-text, #0f172a);
        border-collapse: separate;
        border-spacing: 0 10px;
        margin-top: -10px;
    }

    .dark-mode .comparison-result .comparison-table {
        color: var(--comparison-text, #f8fafc);
    }

    .comparison-result .comparison-table thead th,
    .comparison-result .comparison-table thead th:hover {
        background: var(--comparison-surface-strong) !important;
        color: var(--comparison-text) !important;
        border-top: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent);
        border-bottom: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent);
        border-left: 0;
        border-right: 1px solid color-mix(in srgb, var(--comparison-border) 45%, transparent);
        box-shadow: none;
        transform: none;
    }

    .comparison-result .comparison-table thead th:first-child {
        background: var(--comparison-surface-strong) !important;
        color: var(--comparison-text) !important;
        border-top-left-radius: 18px;
        border-bottom-left-radius: 18px;
        border-left: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent);
        text-align: left;
        padding-left: 20px;
    }

    .comparison-result .comparison-table thead th:last-child {
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
        padding-right: 18px;
    }

    .comparison-result .comparison-table td {
        background: var(--comparison-surface-soft) !important;
        color: var(--comparison-text) !important;
        border: 0;
        box-shadow: inset 0 1px 0 color-mix(in srgb, var(--comparison-surface-strong) 72%, white);
    }

    .comparison-result .comparison-table th:first-child,
    .comparison-result .comparison-table td:first-child {
        background: var(--comparison-surface-strong) !important;
        color: var(--comparison-text) !important;
        box-shadow: 2px 0 16px rgba(15, 23, 42, 0.05), inset -1px 0 0 rgba(226, 232, 240, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    }

    .comparison-result .comparison-table tbody .feature-row td:first-child {
        border-top-left-radius: 18px;
        border-bottom-left-radius: 18px;
        padding-left: 18px;
    }

    .comparison-result .comparison-table tbody .feature-row td:last-child {
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .comparison-result .comparison-table .category-row td {
        background: var(--comparison-surface-strong) !important;
        color: var(--comparison-text) !important;
        border-radius: 18px;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }

    .comparison-result .comparison-table tr.diff-row td,
    .comparison-result .comparison-table tr.diff-row:hover td {
        background: color-mix(in srgb, var(--comparison-text, #0f172a) 4%, var(--comparison-surface-strong)) !important;
    }

    .comparison-result .difference-highlight {
        background: var(--comparison-accent-soft);
        color: var(--comparison-text);
    }


    body.comparison-card-mode .comparison-table,
    .comparison-table-wrapper.is-card-mode .comparison-table {
        display: none !important;
    }

    body.comparison-card-mode .comparison-table-wrapper>img,
    .comparison-table-wrapper.is-card-mode>img {
        display: none !important;
    }

    body.comparison-card-mode .comparison-cards,
    .comparison-table-wrapper.is-card-mode .comparison-cards {
        display: block !important;
    }

    body.comparison-card-mode .comparison-card-group-title,
    .comparison-table-wrapper.is-card-mode .comparison-card-group-title {
        position: sticky;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    @media (max-width: 768px) {
        .comparison-cards {
            margin-top: 10px;
            gap: 10px;
        }

        .comparison-card-group-title {
            top: 6px;
            margin: 10px auto 8px;
            padding: 8px 12px;
            font-size: 11px;
            border-radius: 12px;
            width: fit-content;
        }

        .comparison-card-item {
            padding: 14px 14px;
            border-radius: 14px;
            margin-bottom: 10px;
        }

        .comparison-card-item h4 {
            font-size: 13px;
            line-height: 1.3;
        }

        .comparison-card-item li {
            gap: 10px;
            padding: 9px 0;
        }

        .comparison-table-wrapper,
        .comparison-result .comparison-table-container,
        .comparison-cards {
            padding: 8px;
            border-radius: 18px;
        }

        .comparison-table {
            border-spacing: 0 5px;
            margin-top: -5px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 11px 9px;
            font-size: 12px;
        }

        .comparison-table thead th {
            height: 44px;
            padding: 0 10px;
            font-size: 11px;
            line-height: 1.05;
            letter-spacing: -0.02em;
            border-left: 0 !important;
            border-right: 0 !important;
            box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--comparison-border) 68%, transparent) !important;
        }

        .comparison-table thead th:first-child {
            font-size: 10px;
            color: var(--comparison-muted) !important;
            padding-left: 14px;
            padding-right: 10px;
            border-left: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent) !important;
            border-top-left-radius: 16px;
            border-bottom-left-radius: 16px;
        }

        .comparison-table thead th:not(:first-child) {
            min-width: 64px;
            padding: 0 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: -0.025em;
            text-align: center;
            color: var(--comparison-text) !important;
        }

        .comparison-table thead th:last-child {
            border-right: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent) !important;
            border-top-right-radius: 16px;
            border-bottom-right-radius: 16px;
        }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            min-width: 144px;
            width: 40%;
        }

        .comparison-table tbody .feature-row td:first-child,
        .comparison-table tbody .feature-row td:last-child,
        .comparison-table .category-row td {
            border-radius: 12px;
        }

        .comparison-table tbody .feature-row td {
            border-left: 0;
            border-right: 0;
        }

        .comparison-table tbody .feature-row td:first-child {
            border-left: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent);
        }

        .comparison-table tbody .feature-row td:last-child {
            border-right: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent);
        }

        .feature-name {
            padding-left: 0;
            gap: 6px;
            font-size: 12px;
            line-height: 1.35;
        }

        .feature-text {
            font-size: 12px;
            line-height: 1.35;
        }

        .comparison-result .feature-category-toggle,
        .comparison-result .table-control-btn,
        .comparison-result .toggle-btn,
        .comparison-result .comparison-note-toggle,
        .comparison-result .scroll-btn,
        .feature-comparison-modal .mode-btn,
        .feature-comparison-modal .preset-btn,
        .feature-comparison-modal .reset-btn,
        .feature-comparison-modal .compare-btn,
        .comparison-result .back-btn {
            min-height: 34px;
            padding: 0 10px;
            font-size: 12px;
            border-radius: 10px;
            flex: 0 0 auto;
            white-space: nowrap;
        }

        .state-pill,
        .status-chip,
        .feature-badge {
            font-size: 11px;
        }
    }

    @media (max-width: 480px) {
        .comparison-table-wrapper,
        .comparison-result .comparison-table-container,
        .comparison-cards {
            padding: 6px;
            border-radius: 16px;
        }

        .comparison-table {
            border-spacing: 0 4px;
            margin-top: -4px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 10px 8px;
            font-size: 11px;
        }

        .comparison-table thead th {
            height: 42px;
            padding: 0 8px;
            font-size: 10px;
            line-height: 1.02;
            letter-spacing: -0.02em;
            border-left: 0 !important;
            border-right: 0 !important;
            box-shadow: inset 0 -1px 0 rgba(17, 17, 17, 0.035) !important;
        }

        .comparison-table thead th:first-child {
            font-size: 10px;
            color: var(--comparison-muted) !important;
            padding-left: 12px;
            padding-right: 8px;
            border-left: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent) !important;
            border-top-left-radius: 14px;
            border-bottom-left-radius: 14px;
        }

        .comparison-table thead th:not(:first-child) {
            min-width: 58px;
            padding: 0 6px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: -0.025em;
            text-align: center;
            color: var(--comparison-text) !important;
        }

        .comparison-table thead th:last-child {
            border-right: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent) !important;
            border-top-right-radius: 14px;
            border-bottom-right-radius: 14px;
        }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            min-width: 128px;
            width: 42%;
        }

        .comparison-table tbody .feature-row td:first-child {
            padding-left: 12px;
        }

        .comparison-table tbody .feature-row td:first-child,
        .comparison-table tbody .feature-row td:last-child,
        .comparison-table .category-row td {
            border-radius: 10px;
        }

        .comparison-table tbody .feature-row td {
            border-left: 0;
            border-right: 0;
        }

        .comparison-table tbody .feature-row td:first-child {
            border-left: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent);
        }

        .comparison-table tbody .feature-row td:last-child {
            border-right: 1px solid color-mix(in srgb, var(--comparison-border) 80%, transparent);
        }

        .comparison-card-group-title {
            padding: 7px 10px;
            margin: 8px 0 6px;
        }

        .comparison-card-item {
            padding: 12px 12px;
            border-radius: 12px;
            margin-bottom: 8px;
        }

        .comparison-card-item h4,
        .feature-name,
        .feature-text {
            font-size: 12px;
            line-height: 1.32;
        }

        .comparison-card-item li {
            gap: 8px;
            padding: 8px 0;
            font-size: 11px;
        }

        .state-pill,
        .status-chip,
        .feature-badge {
            font-size: 10px;
        }

        .comparison-result .feature-category-toggle,
        .comparison-result .table-control-btn,
        .comparison-result .toggle-btn,
        .comparison-result .comparison-note-toggle,
        .comparison-result .scroll-btn,
        .feature-comparison-modal .mode-btn,
        .feature-comparison-modal .preset-btn,
        .feature-comparison-modal .reset-btn,
        .feature-comparison-modal .compare-btn,
        .comparison-result .back-btn {
            min-height: 40px;
            padding: 0 10px;
            font-size: 11px;
        }

        .table-scroll-buttons {
            right: 10px;
            bottom: 92px;
            gap: 6px;
        }

        .scroll-btn {
            width: 40px;
            height: 40px;
        }

        .card-mode-toast {
            bottom: 16px;
            padding: 8px 12px;
            font-size: 11px;
        }
    }

    .card-mode-toast {
        position: fixed;
        left: 50%;
        bottom: 24px;
        transform: translateX(-50%) translateY(10px);
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(29, 29, 31, 0.92);
        color: #f5f5f7;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: -0.01em;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 9999;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        max-width: min(92vw, 320px);
        text-align: center;
    }

    .card-mode-toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* 卡片模式旧复选框样式已移除 */



    @keyframes switchTrackSettle {
        0% {
            transform: scale(1);
        }

        45% {
            transform: scale(1.015);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes switchTrackSettleOff {
        0% {
            transform: scale(1);
        }

        45% {
            transform: scale(0.985);
        }

        100% {
            transform: scale(1);
        }
    }

    .dark-mode .switch {
        background:
            radial-gradient(140% 120% at 30% 25%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0.02) 100%),
            linear-gradient(180deg, rgba(51, 65, 85, 0.68), rgba(30, 41, 59, 0.52));
        border-color: rgba(148, 163, 184, 0.3);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.14),
            0 10px 22px rgba(2, 6, 23, 0.32);
    }

    .dark-mode .switch::after {
        background:
            radial-gradient(120% 120% at 30% 24%, rgba(255, 255, 255, 0.24) 0%, rgba(226, 232, 240, 0.18) 45%, rgba(148, 163, 184, 0.26) 100%);
        box-shadow:
            0 4px 10px rgba(2, 6, 23, 0.42),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .dark-mode .switch svg path {
        color: rgba(191, 219, 254, 0.88);
    }





    @keyframes infoPillBreath {

        0%,
        100% {
            transform: translateY(-1px);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 10px 22px rgba(15, 23, 42, 0.1),
                0 0 0 3px rgba(10, 132, 255, 0.08);
        }

        50% {
            transform: translateY(-2px);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 1),
                0 12px 26px rgba(15, 23, 42, 0.12),
                0 0 0 5px rgba(10, 132, 255, 0.12);
        }
    }


    /* iOS 18 风格：套餐对比结果页颜色重构 */
    :root {
        --ios18-bg: #f5f5f7;
        --ios18-surface: rgba(255, 255, 255, 0.78);
        --ios18-surface-strong: rgba(255, 255, 255, 0.92);
        --ios18-surface-raised: rgba(255, 255, 255, 0.96);
        --ios18-stroke: rgba(15, 23, 42, 0.07);
        --ios18-stroke-strong: rgba(15, 23, 42, 0.1);
        --ios18-text: #111111;
        --ios18-subtext: #6b7280;
        --ios18-accent: #007aff;
        --ios18-accent-soft: rgba(0, 122, 255, 0.08);
        --ios18-success: #34c759;
        --ios18-warning: #ff9f0a;
        --ios18-danger: #ff3b30;
    }

    /* 仅覆盖对比结果页相关组件，保持页面其他区域不受影响 */
    .searchBox,
    .pricing-faq .tab,
    .comparison-card-item,
    .comparison-card-group-title,
    .comparison-note-content,
    .tooltip-bubble,
    .feature-note,
    .feature-comparison-modal .modal-content,
    .comparison-result .result-content,
    .comparison-note-popover {
        background: var(--ios18-surface-raised);
        border: 1px solid var(--ios18-stroke);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
        backdrop-filter: blur(18px) saturate(165%);
        -webkit-backdrop-filter: blur(18px) saturate(165%);
        transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .comparison-table-wrapper,
    .comparison-result .comparison-table-container {
        background: var(--ios18-surface);
        border: none;
        border-radius: 24px;
        padding: 12px;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
        backdrop-filter: blur(18px) saturate(165%);
        -webkit-backdrop-filter: blur(18px) saturate(165%);
    }
+
+    .comparison-cards {
+        background: transparent;
+        border: none;
+        box-shadow: none;
+        backdrop-filter: none;
+        -webkit-backdrop-filter: none;
+    }

    .comparison-table {
        color: var(--ios18-text, #111111);
        border-collapse: separate;
        border-spacing: 0 6px;
        margin-top: -6px;
    }

    .comparison-table thead {
        background: linear-gradient(180deg, var(--ios18-surface-raised), color-mix(in srgb, var(--ios18-surface-raised) 94%, #f5f5f7));
        border: 1px solid var(--ios18-stroke);
        border-radius: 20px;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04), inset 0 1px 0 color-mix(in srgb, var(--ios18-surface-raised) 82%, white);
        overflow: hidden;
    }

    .comparison-table thead tr {
        background: transparent;
    }

    .comparison-table thead th,
    .comparison-table thead th:hover {
        background: transparent !important;
        color: var(--ios18-text) !important;
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
        transform: none;
        transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .comparison-table thead th.ios-pressed,
    .comparison-table thead th.ios-focused,
    .comparison-table thead th.is-column-active {
        background: linear-gradient(180deg, var(--ios18-surface-raised), color-mix(in srgb, var(--ios18-surface-raised) 94%, #f7f9fc)) !important;
        transform: translateY(-1px);
    }

    .comparison-table thead th.ios-focused,
    .comparison-table thead th.is-column-active {
        box-shadow: none !important;
        border-radius: 12px;
    }

    .comparison-table tbody tr > *.is-column-active {
        background: color-mix(in srgb, var(--ios18-text) 1%, transparent) !important;
        box-shadow: none;
    }

    .comparison-table tbody tr > td:first-child.is-column-active {
        background: color-mix(in srgb, var(--ios18-text) 1%, transparent) !important;
        color: var(--ios18-text);
    }

    .comparison-table tbody tr > td:first-child.is-column-active .feature-name,
    .comparison-table tbody tr > td:first-child.is-column-active .feature-text {
        color: color-mix(in srgb, var(--ios18-text) 92%, #111827);
    }

    .comparison-table tbody tr > td:first-child.is-column-active::after {
        content: '';
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--ios18-stroke) 70%, transparent), transparent);
        pointer-events: none;
    }

    .comparison-table[data-active-column] thead th,
    .comparison-table[data-active-column] tbody tr > * {
        transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .comparison-table[data-active-column="0"] thead th:first-child,
    .comparison-table[data-active-column="1"] thead th:nth-child(2),
    .comparison-table[data-active-column="2"] thead th:nth-child(3),
    .comparison-table[data-active-column="3"] thead th:nth-child(4),
    .comparison-table[data-active-column="4"] thead th:nth-child(5),
    .comparison-table[data-active-column="5"] thead th:nth-child(6) {
        background: linear-gradient(180deg, var(--ios18-surface-raised), color-mix(in srgb, var(--ios18-surface-raised) 94%, #f5f8ff)) !important;
        box-shadow: inset 0 1px 0 color-mix(in srgb, var(--ios18-surface-raised) 70%, white), inset 0 -1px 0 color-mix(in srgb, var(--ios18-stroke) 20%, transparent) !important;
        position: relative;
        overflow: hidden;
    }

    .comparison-table[data-active-column="0"] thead th:first-child::before,
    .comparison-table[data-active-column="1"] thead th:nth-child(2)::before,
    .comparison-table[data-active-column="2"] thead th:nth-child(3)::before,
    .comparison-table[data-active-column="3"] thead th:nth-child(4)::before,
    .comparison-table[data-active-column="4"] thead th:nth-child(5)::before,
    .comparison-table[data-active-column="5"] thead th:nth-child(6)::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, color-mix(in srgb, var(--ios18-surface-raised) 90%, white), transparent);
        pointer-events: none;
        opacity: 0.78;
    }
+
+    .comparison-table thead th[aria-label] {
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        white-space: nowrap;
+        overflow: hidden;
+        text-overflow: clip;
+    }
+
+    .comparison-table thead th[aria-label]:not(:focus):not(.is-column-active):not(.ios-focused) {
+        font-size: 0 !important;
+        color: transparent !important;
+    }
+
+    .comparison-table thead th[aria-label]::after {
+        content: attr(aria-label);
+        font-size: 12px;
+        font-weight: 600;
+        color: inherit;
+    }

    .comparison-table thead th {
        height: 54px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: -0.02em;
        text-transform: none;
        line-height: 1.15;
        vertical-align: middle;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .comparison-table thead th:first-child,
    #col-feature {
        color: var(--ios18-text) !important;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        text-align: left;
        padding-left: 18px;
        padding-right: 14px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    .comparison-table thead th:not(:first-child) {
        min-width: 120px;
        padding: 0 22px;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: -0.025em;
        line-height: 1.08;
        color: var(--ios18-text) !important;
        vertical-align: middle;
    }

    .comparison-table thead th:last-child {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        padding-right: 22px;
    }

    .comparison-table thead tr {
        filter: none;
    }

    .comparison-table th:hover {
        transform: none;
    }

    .comparison-table tr {
        background: transparent;
    }

    .comparison-table td {
        background: color-mix(in srgb, var(--ios18-surface-raised) 92%, white);
        color: color-mix(in srgb, var(--ios18-text) 76%, #424245);
        border: 0;
        box-shadow: inset 0 1px 0 color-mix(in srgb, var(--ios18-surface-raised) 55%, white);
        transition: background 220ms ease, box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform, background;
        -webkit-tap-highlight-color: transparent;
    }

    .comparison-table tbody .feature-row td {
        height: 52px;
        border-left: 0;
        border-right: 0;
        box-shadow: inset 0 1px 0 color-mix(in srgb, var(--ios18-surface-raised) 50%, white), inset 0 -1px 0 color-mix(in srgb, var(--ios18-stroke) 20%, transparent);
    }

    .comparison-table tbody .feature-row td:not(:first-child) {
        text-align: center;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child,
    .feature-row.active td:first-child {
        background: color-mix(in srgb, var(--ios18-surface-raised) 98%, #fbfbfd) !important;
        color: var(--ios18-text);
        box-shadow: none;
        border-left: none !important;
        border-right: none !important;
    }

    .comparison-table tbody .feature-row.active td {
        background: color-mix(in srgb, var(--ios18-surface-raised) 98%, #fbfbfd) !important;
        border-left: 0;
        border-right: 0;
        box-shadow: inset 0 1px 0 color-mix(in srgb, var(--ios18-surface-raised) 55%, white), inset 0 -1px 0 color-mix(in srgb, var(--ios18-stroke) 20%, transparent);
    }

    .comparison-table tbody .feature-row.active td:first-child {
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;
    }

    .comparison-table tbody .feature-row.active td:last-child {
        border-top-right-radius: 14px;
        border-bottom-right-radius: 14px;
    }

    .comparison-table tbody .feature-row td:first-child {
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;
        padding-left: 16px;
    }

    .comparison-table tbody .feature-row td:last-child {
        border-top-right-radius: 14px;
        border-bottom-right-radius: 14px;
    }

        .comparison-table .feature-name {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        min-height: 20px;
        padding-left: 0;
        font-size: 12px;
        line-height: 1.35;
        font-weight: 500;
        color: var(--ios18-text);
        letter-spacing: -0.01em;
    }

    .comparison-table .feature-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: -0.01em;
    }

    .comparison-table .feature-info-btn {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
        border: 1px solid var(--ios18-stroke);
        background: linear-gradient(180deg, var(--ios18-surface-raised), color-mix(in srgb, var(--ios18-surface-raised) 94%, #f5f5f7));
        color: var(--ios18-accent);
        box-shadow: 0 3px 10px color-mix(in srgb, rgba(15, 23, 42, 0.08) 80%, transparent), inset 0 1px 0 color-mix(in srgb, var(--ios18-surface-raised) 80%, white);
    }

    .comparison-table .check {
        color: var(--ios18-text);
    }

    .comparison-table .check,
    .comparison-table .cross,
    .comparison-table .partial,
    .comparison-table .limited,
    .comparison-table .optional,
    .comparison-table .unlimited,
    .comparison-table .feature {
        text-align: center;
        vertical-align: middle;
    }

    .comparison-table .check svg,
    .comparison-table .cross svg,
    .comparison-table .partial svg,
    .comparison-table .limited svg,
    .comparison-table .optional svg,
    .comparison-table .unlimited svg,
    .comparison-table .feature svg {
        width: 22px;
        height: 22px;
        filter: drop-shadow(0 2px 5px rgba(15, 23, 42, 0.08));
    }

    .comparison-table .check svg circle,
    .comparison-table .partial svg circle,
    .comparison-table .limited svg circle,
    .comparison-table .optional svg circle,
    .comparison-table .unlimited svg circle,
    .comparison-table .feature svg circle {
        fill: color-mix(in srgb, var(--ios18-text) 8%, transparent);
    }

    .comparison-table .check svg path {
        stroke: var(--ios18-text);
        stroke-width: 2.15;
    }

    .comparison-table .cross svg circle {
        fill: color-mix(in srgb, var(--ios18-stroke) 35%, transparent);
    }

    .comparison-table .cross svg path {
        stroke: color-mix(in srgb, var(--ios18-subtext) 90%, #94a3b8);
        stroke-width: 2.05;
    }

    .comparison-card-item:hover,
    .comparison-card-group-title:hover,
    .comparison-note-content:hover,
    .tooltip-bubble:hover,
    .feature-comparison-modal .modal-content:hover,
    .comparison-result .result-content:hover,
    .comparison-table-wrapper:hover,
    .comparison-result .comparison-table-container:hover,
    .comparison-cards:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
        border-color: var(--ios18-stroke);
    }

    .comparison-table .cross {
        color: var(--ios18-stroke);
    }

    .comparison-table .optional,
    .comparison-table .unlimited,
    .comparison-table .feature {
        color: var(--ios18-subtext);
    }

    .comparison-table .optional svg path {
        stroke: var(--ios18-subtext);
        stroke-width: 2;
    }

    .comparison-table .category-row {
        background: transparent;
        color: var(--ios18-text);
    }

    .comparison-table .category-row td {
        background: var(--ios18-surface-raised);
        border-top: 1px solid var(--ios18-stroke);
        border-bottom: 1px solid var(--ios18-stroke);
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        font-size: 11px;
        letter-spacing: -0.01em;
        text-transform: none;
        color: var(--ios18-text);
        line-height: 1.2;
    }

    .comparison-table .category-row td:first-child {
        border-left: 1px solid var(--ios18-stroke);
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;
    }

    .comparison-table .category-row td:last-child {
        border-right: 1px solid var(--ios18-stroke);
        border-top-right-radius: 14px;
        border-bottom-right-radius: 14px;
    }

    .comparison-table .collapse-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        margin-right: 8px;
        border-radius: 999px;
        background: transparent;
        box-shadow: none;
        color: var(--ios18-subtext);
        transition: color 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
    }

    .comparison-table .collapse-icon svg {
        display: block;
        width: 14px;
        height: 14px;
    }

    .category-row.collapsible:hover td {
        background: color-mix(in srgb, var(--ios18-surface-raised) 94%, #f0f0f2);
    }

    .feature-row.active td {
        background: color-mix(in srgb, var(--ios18-surface-raised) 98%, #fbfbfd);
    }

    .feature-row:hover td {
        background: color-mix(in srgb, var(--ios18-surface-raised) 96%, #f8f8fa);
        border-left: 0;
        border-right: 0;
        box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--ios18-stroke) 18%, transparent);
        transform: translateY(-1px);
    }

    .feature-row:hover td:first-child {
        border-left: 1px solid color-mix(in srgb, var(--ios18-stroke) 20%, transparent);
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;
    }

    .feature-row:hover td:last-child {
        border-right: 1px solid color-mix(in srgb, var(--ios18-stroke) 20%, transparent);
        border-top-right-radius: 14px;
        border-bottom-right-radius: 14px;
    }

    /* 套餐对比表暗夜模式补丁：确保比较表及卡片自动切换 */
    .dark-mode .comparison-table-wrapper,
    .dark-mode .comparison-result .comparison-table-container,
    .dark-mode .comparison-cards {
        background: rgba(15, 23, 42, 0.72) !important;
        border-color: rgba(148, 163, 184, 0.2) !important;
        box-shadow: 0 12px 32px rgba(2, 6, 23, 0.28) !important;
    }

    .dark-mode .comparison-table thead,
    .dark-mode .comparison-table thead tr {
        background: transparent !important;
    }

    .dark-mode .comparison-table thead th,
    .dark-mode .comparison-table thead th:hover {
        background: rgba(15, 23, 42, 0.92) !important;
        color: #f8fafc !important;
        -webkit-text-fill-color: #f8fafc !important;
        border-color: rgba(148, 163, 184, 0.16) !important;
    }

    .dark-mode .comparison-table th:first-child,
    .dark-mode .comparison-table td:first-child {
        background: rgba(15, 23, 42, 0.96) !important;
        color: #f8fafc !important;
        box-shadow: 2px 0 8px rgba(2, 6, 23, 0.16) !important;
    }

    .dark-mode .comparison-table td {
        background: rgba(15, 23, 42, 0.86) !important;
        color: #cbd5e1 !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    }

    .dark-mode .comparison-table .category-row td {
        background: rgba(15, 23, 42, 0.96) !important;
        color: #f8fafc !important;
        border-color: rgba(148, 163, 184, 0.16) !important;
    }

    .dark-mode .comparison-table .feature-name,
    .dark-mode .comparison-table .feature-text,
    .dark-mode .comparison-table .check,
    .dark-mode .comparison-table .optional,
    .dark-mode .comparison-table .unlimited,
    .dark-mode .comparison-table .feature {
        color: #e2e8f0 !important;
    }

    .dark-mode .feature-search-empty {
        background: rgba(30, 41, 59, 0.9);
        color: #cbd5e1;
    }

    .dark-mode .status-chip,
    .dark-mode .feature-badge,
    .dark-mode .state-pill {
        background: rgba(30, 41, 59, 0.9) !important;
        border-color: rgba(148, 163, 184, 0.18) !important;
        color: #cbd5e1 !important;
    }

    .dark-mode .comparison-card-group-title {
        background: rgba(15, 23, 42, 0.72);
        color: #e2e8f0;
        border-color: rgba(148, 163, 184, 0.2);
    }

    .dark-mode .comparison-card-item {
        background: rgba(15, 23, 42, 0.7);
        border-color: rgba(148, 163, 184, 0.18);
    }

    .dark-mode .comparison-card-item h4,
    .dark-mode .comparison-card-item li,
    .dark-mode .comparison-card-item li span {
        color: #e2e8f0;
    }

    .dark-mode .comparison-note-toggle,
    .dark-mode .comparison-note-content,
    .dark-mode .tooltip-bubble {
        background: rgba(15, 23, 42, 0.9);
        color: #e2e8f0;
        border-color: rgba(148, 163, 184, 0.18);
    }

    .dark-mode .comparison-table-wrapper::after,
    .dark-mode .comparison-result .comparison-table-container::after {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.42) 0%, rgba(15, 23, 42, 0.12) 55%, rgba(15, 23, 42, 0) 100%);
    }

}