/* 免费页面 - 精致版 */
.free-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* 顶部标题 */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.subtitle {
    color: #64748b;
    font-size: 14px;
}

/* ========== 紧凑精致卡片区域 ========== */
.plans-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.plan-card {
    width: 300px;
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 推荐卡片 */
.plan-recommended {
    border-color: #6366f1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.12);
}

/* 标签 */
.plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f1f5f9;
    color: #64748b;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 0 0 10px 10px;
    font-size: 10px;
    font-weight: 700;
}

/* 头部 */
.plan-header {
    text-align: center;
    margin-bottom: 14px;
    padding-top: 8px;
}

.plan-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.vip-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.plan-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.plan-desc {
    color: #94a3b8;
    font-size: 12px;
}

/* 价格 */
.plan-price {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 14px;
}

.vip-price {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: none;
    border-radius: 10px;
    margin: 0 -6px 14px;
    padding: 12px 6px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.price-value.permanent {
    font-size: 26px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    display: block;
    color: #64748b;
    font-size: 11px;
    margin-top: 4px;
}

/* 特性区域 */
.plan-features {
    margin-bottom: 14px;
}

.feature-title {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-title small {
    font-weight: 400;
    color: #94a3b8;
    font-size: 10px;
}

.vip-title {
    color: #6366f1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    color: #64748b;
    border-bottom: 1px dashed #f1f5f9;
}

.feature-list li:last-child {
    border-bottom: none;
}

.dot {
    width: 5px;
    height: 5px;
    background: #3b82f6;
    border-radius: 50%;
}

.check {
    width: 14px;
    height: 14px;
    background: #6366f1;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.feature-list strong {
    color: #1e293b;
    font-weight: 600;
    margin-left: 2px;
}

/* 提示文字 */
.notice-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #a16207;
    background: #fefce8;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #fef08a;
}

.notice-text.danger {
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
}

/* 按钮 */
.btn {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: #fff;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}

.btn-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #f8fafc;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* VS 分隔 */
.vs-divider {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    flex-shrink: 0;
}

/* ========== 下方内容保留原有样式 ========== */

/* 快速对比 */
.compare-section {
    margin-bottom: 50px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 700;
}

.heading-icon {
    font-size: 28px;
}

.compare-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.compare-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s;
}

.compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.recommended-card {
    border-color: #6366f1;
    background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
}

.compare-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.compare-icon.short {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.compare-icon.long {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.compare-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compare-info strong {
    font-size: 18px;
    color: #1e293b;
}

.compare-info span {
    font-size: 14px;
    color: #64748b;
}

.recommended-card .compare-info strong {
    color: #4f46e5;
}

/* 重要提示 */
.notice-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #86efac;
    border-radius: 24px;
    padding: 35px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.notice-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notice-header h4 {
    font-size: 22px;
    color: #166534;
    font-weight: 700;
}

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

.notice-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.item-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.notice-item p {
    margin: 0;
    color: #166534;
    font-size: 15px;
    line-height: 1.5;
}

.notice-item strong {
    color: #15803d;
}

/* 响应式 */
@media (max-width: 768px) {
    .plans-wrapper {
        flex-direction: column;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .plan-card {
        width: 100%;
        max-width: 340px;
    }
    
    .compare-cards {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
}