/* ============================================================ */
/* ===== 价格套餐 ===== */
/* ============================================================ */
.pricing {
    padding: 80px 0 60px;
    background: var(--white);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 32px 24px 36px;
    border: 1px solid rgba(26, 95, 180, 0.04);
    box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-lighter));
    opacity: 0;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(43, 123, 230, 0.08);
}
.pricing-card:hover::before {
    opacity: 1;
}
.pricing-card .recommended {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--blue-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 60px;
}
.pricing-card .plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.pricing-card .plan-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.pricing-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #FF0000;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}
.pricing-card .price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.pricing-card .features {
    flex: 1;
    margin-bottom: 24px;
}
.pricing-card .features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 6px 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(26, 95, 180, 0.03);
}
.pricing-card .features li:last-child {
    border-bottom: none;
}
.pricing-card .features li i {
    color: var(--blue-bright);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.pricing-card .features li .na {
    color: var(--text-muted);
    opacity: 0.5;
}
.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}
.pricing-card.popular {
    background: var(--white);
    border-color: var(--blue-primary);
    box-shadow: 0 8px 40px -16px rgba(26, 95, 180, 0.20);
}
.pricing-card.popular .price {
    color: #FF0000;
}

/* ============================================================ */
/* ===== 对比表格 ===== */
/* ============================================================ */
.compare {
    padding: 60px 0 80px;
    background: var(--light-bg);
}
.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    background: var(--white);
    border: 1px solid rgba(26, 95, 180, 0.04);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    min-width: 700px;
}
.compare-table thead th {
    background: var(--blue-deep);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}
.compare-table thead th:first-child {
    border-radius: var(--radius) 0 0 0;
}
.compare-table thead th:last-child {
    border-radius: 0 var(--radius) 0 0;
}
.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(26, 95, 180, 0.04);
    color: var(--text-secondary);
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}
.compare-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}
.compare-table tbody td .check {
    color: var(--blue-bright);
    font-size: 1.1rem;
}
.compare-table tbody td .cross {
    color: var(--text-muted);
    opacity: 0.4;
    font-size: 1.1rem;
}

/* ============================================================ */
/* ===== 定制咨询 ===== */
/* ============================================================ */
.custom-cta {
    padding: 80px 0;
    background: var(--white);
}
.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.custom-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.custom-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}
.custom-text .contact-ways {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-top: 12px;
}
.custom-text .contact-ways .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}
.custom-text .contact-ways .item i {
    color: var(--blue-bright);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}
.custom-image .photo {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&q=80') center center / cover no-repeat;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.custom-image .photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.custom-image .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(43, 123, 230, 0.04) 0%, transparent 60%);
    border-radius: var(--radius);
    pointer-events: none;
}

/* ----- CTA ----- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #06204a 0%, #0a3a7a 40%, #0f4a9a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.cta-section .glow-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -20%;
    right: -10%;
    background: rgba(43, 123, 230, 0.20);
}
.cta-section .glow-orb:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -10%;
    left: -5%;
    background: rgba(91, 154, 255, 0.15);
}
.cta-section .container {
    position: relative;
    z-index: 2;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 18px;
}
.cta-section h2 span {
    background: linear-gradient(135deg, #8bb8ff, #c0d8f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-section p {
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 36px;
    opacity: 0.85;
    line-height: 1.7;
}
.cta-section .btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.cta-section .btn-white {
    background: #fff;
    color: var(--blue-deep);
    box-shadow: 0 8px 28px -6px rgba(0, 0, 0, 0.25);
}
.cta-section .btn-white:hover {
    background: var(--blue-lighter);
    color: #fff;
    box-shadow: 0 16px 48px -8px rgba(43, 123, 230, 0.40);
}
.cta-section .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    box-shadow: none;
}
.cta-section .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .custom-text .contact-ways {
        justify-content: center;
    }
    .custom-image .photo {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .compare-table-wrap {
        border-radius: var(--radius);
    }
    .compare-table thead th:first-child {
        border-radius: 0;
    }
    .compare-table thead th:last-child {
        border-radius: 0;
    }
    .custom-grid {
        gap: 30px;
    }
    .custom-text .contact-ways {
        flex-direction: column;
        align-items: center;
    }
    .custom-image .photo {
        height: 200px;
    }
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 24px 18px 28px;
    }
    .pricing-card .price {
        font-size: 2.2rem;
    }
    .custom-image .photo {
        height: 160px;
    }
}