/* ============================================================
 * by 诗航软件-凯哥 2026.6.16
 * ============================================================ */

/* ============================================================
 * support.css - 诗航运维优势页专用样式
 * ============================================================ */

body {
    background: #f1f5f9;
}

.support-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}
@media (max-width: 900px) {
    .compare-grid { grid-template-columns: 1fr; }
}
.compare-card {
    border-radius: 2rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.25s ease;
}
.compare-card:hover { transform: translateY(-6px); }
.card-header {
    padding: 1.6rem 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.card-header h2 { font-size: 1.8rem; font-weight: 700; display: flex; align-items: center; gap: 0.6rem; }

.badge-sh, .badge-other {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: #10b981;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: nowrap;
}
.badge-other {
    background: #ef4444;
}
.badge-sh i, .badge-other i {
    font-size: 0.75rem;
    display: inline-flex;
}

.price-block {
    background: #f1f5f9;
    margin: 1.5rem 2rem;
    padding: 1.2rem;
    border-radius: 1.5rem;
    text-align: center;
}
.price-number { font-size: 2.5rem; font-weight: 800; }
.sh-price { color: #0f3b2c; }
.other-price { color: #b91c1c; }
.compare-list { padding: 0 2rem 2rem 2rem; list-style: none; }
.compare-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #eef2ff; }
.compare-icon { width: 32px; height: 32px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sh-card .compare-icon { background: #e0f2fe; color: #0e7c5e; }
.other-card .compare-icon { background: #fee2e2; color: #b91c1c; }
.flow-section {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.06);
}
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h3 { font-size: 1.9rem; font-weight: 700; background: linear-gradient(135deg, #1e293b, #2c5f8a); background-clip: text; -webkit-background-clip: text; color: transparent; }
.flow-steps { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.2rem; }
.step-item { flex: 1; min-width: 180px; background: #f9fcff; border-radius: 1.6rem; padding: 1.5rem 1rem; text-align: center; border: 1px solid #e0edfc; }
.step-num { width: 44px; height: 44px; background: #1e4a6e; color: white; font-weight: 800; display: flex; align-items: center; justify-content: center; border-radius: 30px; margin: 0 auto 1rem; }
.step-icon { font-size: 2rem; color: #2c7a4d; margin-bottom: 0.6rem; }
.step-title { font-weight: 800; font-size: 1.2rem; margin: 0.5rem 0; }

.copyright { text-align: center; margin-top: 2rem; padding: 1.2rem 0 2rem; font-size: 0.8rem; color: #5b6e8c; border-top: 1px solid #e2e8f0; }
.copyright a { color: #2c7a4d; text-decoration: none; }

@media (max-width: 880px) {
    .support-container { padding: 0 1.2rem; }
    .hero-highlight {
        font-size: 1rem;
    }
    .badge-sh, .badge-other {
        white-space: normal;
        padding: 0.2rem 0.9rem;
    }
}

@media (max-width: 600px) {
    .card-header h2 {
        font-size: 1.4rem;
    }
    .price-number {
        font-size: 2rem;
    }
    .flow-steps {
        flex-direction: column;
        align-items: stretch;
    }
    .step-item {
        width: 100%;
    }
}