/* ========== Hero ========== */
.price-hero {
    position: relative;
    min-height: 580px;
    background: #0B1B3A;
    overflow: hidden;
    padding: 140px 0;
}
.price-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/bj_banner.png') center center / cover no-repeat;
}
.price-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 27, 58, 0.92) 0%, rgba(11, 27, 58, 0.72) 50%, rgba(11, 27, 58, 0.55) 100%);
}
.price-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(34, 211, 238, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 55%);
}
.price-hero .container {
    position: relative;
    z-index: 2;
}
.price-hero-layout {
    display: flex;
    justify-content: flex-start;
}
.price-hero-content {
    max-width: 720px;
}
.price-hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(147, 197, 253, 0.3);
    color: #BFDBFE;
    font-size: 13px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.price-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.price-hero h1 span {
    color: #93C5FD;
}
.price-hero-content > p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.7;
}
.price-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.price-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.price-btn-primary {
    background: #2563EB;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.price-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}
.price-btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
.price-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}
.price-hero-stats {
    display: flex;
    gap: 40px;
}
.price-hero-stat {
    display: flex;
    flex-direction: column;
}
.price-hero-stat__val {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.price-hero-stat__val span {
    font-size: 13px;
    font-weight: 500;
    color: #93C5FD;
    margin-left: 2px;
}
.price-hero-stat__lbl {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
}

/* Hero 右侧预览卡片叠层（已移除，保留定义兼容旧引用） */
.price-hero-preview { display: none; }

/* ========== Section Head ========== */
.price-section-head {
    text-align: center;
    margin-bottom: 48px;
}
.price-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #2563EB;
    letter-spacing: 2px;
    padding: 4px 14px;
    background: rgba(37,99,235,0.08);
    border-radius: 4px;
    margin-bottom: 14px;
}
.price-section-head h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.price-section-head h2 span {
    color: #2563EB;
}
.price-section-head p {
    font-size: 15px;
    color: #64748B;
}

/* ========== 报价卡片网格 ========== */
.price-cards-section {
    padding: 80px 0 60px;
    background: #F8FAFC;
}
.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.price-card {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14);
    border-color: #CBD5E1;
}
/* body */
.price-card-body {
    padding: 28px 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.price-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}
.price-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.price-card-icon--purple  { background: #7C3AED; }
.price-card-icon--cyan    { background: #0891B2; }
.price-card-icon--orange  { background: #EA580C; }
.price-card-icon--green   { background: #16A34A; }
.price-card-icon--blue    { background: #2563EB; }
.price-card-icon--orange2 { background: #D97706; }

.price-card-head h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-card-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #2563EB;
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 0.5px;
}
.price-card-desc {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 14px;
    line-height: 1.6;
}
.price-card-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #E2E8F0;
}
.price-card-from {
    font-size: 15px;
    font-weight: 600;
    color: #2563EB;
    margin-right: 2px;
}
.price-card-amount {
    font-size: 30px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
}
.price-card-unit {
    font-size: 12.5px;
    color: #64748B;
    margin-left: 4px;
}
.price-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.price-card-features li {
    font-size: 13px;
    color: #475569;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.price-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2563EB;
}
.price-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: #2563EB;
    color: #fff;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    margin-top: auto;
}
.price-card-btn:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
    color: #fff;
}

.price-table-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 13px;
    color: #94A3B8;
}

/* ========== 差异对比表格 ========== */
.price-compare-section {
    padding: 80px 0;
    background: #fff;
}
.price-compare-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.price-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.price-compare-table thead tr {
    background: #F1F5F9;
}
.price-compare-table th,
.price-compare-table td {
    padding: 16px 22px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #E2E8F0;
}
.price-compare-table tbody tr:last-child td {
    border-bottom: none;
}
.price-compare-table tbody tr:hover {
    background: #FAFBFC;
}
.price-compare-th__feature {
    width: 160px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.5px;
}
.price-compare-th__other {
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
}
.price-compare-th__us {
    text-align: center;
}
.price-compare-th__us-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #2563EB;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.5px;
}
.price-compare-table tbody td:first-child {
    font-weight: 600;
    color: #0F172A;
    width: 160px;
    background: #F8FAFC;
}
.price-compare-table tbody td:nth-child(2) {
    color: #94A3B8;
}
.price-compare-td__us {
    background: #EFF6FF !important;
    color: #1E40AF;
    font-weight: 500;
}
.price-compare-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #2563EB;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
}

/* ========== 最新成交客户 ========== */
.price-contracts-section {
    padding: 80px 0;
    background: #F8FAFC;
}

/* ========== 定制咨询 CTA ========== */
.price-cta {
    padding: 80px 0;
    background: #fff;
}
.price-cta-card {
    background: #0B1B3A;
    border-radius: 14px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(11, 27, 58, 0.2);
    position: relative;
    overflow: hidden;
}
.price-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 90% 50%, rgba(37, 99, 235, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(14, 165, 233, 0.25) 0%, transparent 60%);
}
.price-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 36px 36px;
}
.price-cta-text,
.price-cta-actions {
    position: relative;
    z-index: 2;
}
.price-cta-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.price-cta-text h2 span {
    color: #93C5FD;
}
.price-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    line-height: 1.7;
}
.price-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}
.price-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
    border: none;
    cursor: pointer;
}
.price-cta-actions .btn-primary {
    background: #2563EB;
    color: #fff;
}
.price-cta-actions .btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
}
.price-cta-actions .btn-outline-light {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}
.price-cta-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-1px);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .price-hero { min-height: auto; padding: 110px 0 100px; }
    .price-hero h1 { font-size: 40px; }
    .price-hero-stats { gap: 32px; }

    .price-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .price-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    .price-cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .price-hero { min-height: auto; padding: 100px 0 80px; }
    .price-hero-content > p { font-size: 14px; margin-bottom: 28px; }
    .price-hero h1 { font-size: 32px; }
    .price-hero-stats { flex-wrap: wrap; gap: 18px 36px; }
    .price-hero-stat__val { font-size: 22px; }

    .price-cards-section { padding: 60px 0 40px; }
    .price-section-head { margin-bottom: 32px; }
    .price-section-head h2 { font-size: 26px; }
    .price-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .price-compare-section { padding: 60px 0; }
    .price-compare-table-wrap { overflow-x: auto; }
    .price-compare-table { min-width: 640px; }

    .price-cta { padding: 50px 0; }
    .price-cta-text h2 { font-size: 24px; }
    .price-cta-actions { flex-direction: column; width: 100%; }
    .price-cta-actions .btn { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
    .price-hero { padding: 90px 0 70px; }
    .price-hero h1 { font-size: 26px; }
    .price-hero-cta { flex-direction: column; }
    .price-btn { justify-content: center; }

    .price-card-body { padding: 22px 20px 18px; }
    .price-card-amount { font-size: 26px; }
    .price-card-icon { width: 34px; height: 34px; }

    .price-compare-table th,
    .price-compare-table td { padding: 12px 14px; font-size: 13px; }

    .price-cta-card { padding: 32px 20px; border-radius: 12px; }
}
