/* ============================================================ */
/* ===== 资质荣誉 — 分类展示 ===== */
/* ============================================================ */
.honor-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.honor-category {
    margin-bottom: 56px;
}
.honor-category:last-child {
    margin-bottom: 0;
}
.honor-category .cat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    border-bottom: 2px solid rgba(26, 95, 180, 0.06);
    padding-bottom: 14px;
}
.honor-category .cat-header .cat-icon {
    font-size: 1.8rem;
    color: var(--blue-bright);
    width: 44px;
    text-align: center;
}
.honor-category .cat-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
.honor-category .cat-header .cat-count {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--off-white);
    padding: 4px 16px;
    border-radius: 60px;
    font-weight: 500;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.honor-item {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 28px 24px 30px;
    border: 1px solid rgba(26, 95, 180, 0.04);
    box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.honor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-lighter));
    opacity: 0;
    transition: var(--transition);
}
.honor-item:hover::before {
    opacity: 1;
}
.honor-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(43, 123, 230, 0.08);
}
.honor-item .honor-icon {
    font-size: 2rem;
    color: var(--blue-bright);
    margin-bottom: 12px;
    display: inline-block;
    opacity: 0.7;
}
.honor-item .honor-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.honor-item .honor-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}
.honor-item .honor-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(26, 95, 180, 0.06);
    padding-top: 12px;
    margin-top: 4px;
}
.honor-item .honor-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.honor-item .honor-meta i {
    color: var(--blue-soft);
    font-size: 0.75rem;
}
.honor-item .badge-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 12px;
    border-radius: 60px;
    background: rgba(43, 123, 230, 0.08);
    color: var(--blue-primary);
    margin-bottom: 10px;
}

/* ============================================================ */
/* ===== 荣誉数据统计 ===== */
/* ============================================================ */
.honor-stats {
    padding: 80px 0;
    background: var(--light-bg);
}
.honor-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.honor-stats-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(26, 95, 180, 0.04);
    box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}
.honor-stats-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(43, 123, 230, 0.08);
}
.honor-stats-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
    margin-bottom: 4px;
}
.honor-stats-item .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.honor-stats-item .stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ----- 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) {
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .honor-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .honor-grid {
        grid-template-columns: 1fr;
    }
    .honor-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .honor-category .cat-header {
        flex-wrap: wrap;
    }
    .honor-category .cat-header .cat-count {
        margin-left: 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .honor-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .honor-stats-item {
        padding: 24px 16px;
    }
    .honor-stats-item .stat-number {
        font-size: 2.4rem;
    }
    .honor-item {
        padding: 22px 18px 24px;
    }
}