/* Free Value Showcase Styles */
.free-value-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
}

.free-value-card {
    position: relative;
    text-align: center;
}

.free-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.free-value-card h4 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.free-value-card .lead {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.free-features {
    text-align: left;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-item i {
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item strong {
    color: #2d3748;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.feature-item small {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
}

.free-guarantee {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.guarantee-text {
    color: #047857;
    font-weight: 600;
    font-size: 1rem;
}

/* Free Reassurance Styles */
.free-reassurance {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    margin-top: 15px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

.free-reassurance small {
    color: #2d3748 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}

/* 权威背书样式 */
.authority-section {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(251, 191, 36, 0.2);
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.1);
}

.authority-text {
    color: #2d3748;
    max-width: 800px;
    margin: 0 auto;
}

.authority-text .lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a202c;
}

.authority-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.authority-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    justify-items: center;
}

.badge-item {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    white-space: nowrap;
}

.badge-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

@media (max-width: 768px) {
    .authority-badges {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 280px;
    }
    
    .authority-section {
        padding: 30px 20px;
    }
    
    .authority-text .lead {
        font-size: 1.1rem;
    }
    
    .authority-text p {
        font-size: 1rem;
    }
    
    .badge-item {
        min-width: auto;
        padding: 14px 16px;
    }
}