





/* 状态卡片 - 优化 */
.status-chip {
    background: white;
    border-radius: 60px;
    padding: 0.6rem 1.8rem;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    border: 1px solid var(--border-light);
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.status-chip:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.dot-green {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 180, 42, 0.1);
    margin-right: 6px;
    position: relative;
}

.dot-green::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* 数字 - 优化 */
.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.stat-number.white {
   
}

.stat-number::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 3px;
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-number:hover::after {
    opacity: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.stat-label.white {
    color: rgba(255, 255, 255, 0.8);
}

/* 卡片 - 优化 */
.card-light {
    background: var(--bg-primary);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.card-light:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    transform: translateY(-6px);
}

.card-light:hover::before {
    transform: translateX(0);
}

/* 深色背景卡片 */
.card-dark {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    color: white;
}

.card-dark:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 场景图标 - 修复显示问题 */
.icon-circle {
    background: rgba(22, 93, 255, 0.08);
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* 修复：hover时只改变背景，图标颜色保持对比 */
.card-light:hover .icon-circle {
    background: var(--primary-gradient);
    transform: rotate(10deg) scale(1.05);
    color: white !important;
    /* 强制白色，确保可见 */
}

/* 深色背景的图标 */
.icon-circle-dark {
    background: rgba(255, 255, 255, 0.1);
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.icon-circle-dark:hover {
    background: white;
    color: var(--primary);
    transform: rotate(10deg) scale(1.05);
}

/* 标签 - 优化 */
.badge-soft {
    background: rgba(22, 93, 255, 0.1);
    color: var(--primary);
    font-weight: 500;
    padding: 0.4rem 1.4rem;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(22, 93, 255, 0.15);
    transition: all 0.3s ease;
}

.badge-soft-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-soft:hover {
    background: rgba(22, 93, 255, 0.15);
    transform: scale(1.05);
}

/* 套餐卡片 - 优化 */
.price-card {
    background: var(--bg-primary);
    border-radius: 36px;
    padding: 2.2rem 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(22, 93, 255, 0.03),
        transparent 70%
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.price-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(145deg, #ffffff, #f8faff);
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.price-card.popular::before {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.3rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.price-tag {
    font-size: 3.2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 1rem 0;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

/* 文字大小控制 - 优化 */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

h1.white {
    color: white;
}

h1 span {
    position: relative;
}

h1 span.primary {
    color: var(--primary);
}

h1 span.white-highlight {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0 8px;
    border-radius: 4px;
}

h2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
}

h2.white {
    color: white;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

h3.white {
    color: white;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

h4.white {
    color: white;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

h5.white {
    color: white;
}

p,
li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

p.white,
li.white {
    color: rgba(255, 255, 255, 0.9);
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.small-text.white {
    color: rgba(255, 255, 255, 0.8);
}

/* 客户案例样式 */
.client-logo {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* FAQ样式 */
.faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
