/* ========== Investment Advisory 页面独有样式 ========== */
.ia-hero {
    background: linear-gradient(135deg, #0A2647 0%, #1E3A5F 100%);
    color: white;
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
}

.ia-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ia-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ia-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.ia-hero .gold {
    color: #D4AF37;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
}

/* 服务卡片 */
.service-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #0A2647;
}

.service-text p {
    margin-bottom: 16px;
    color: #334155;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.service-icon {
    flex: 0.8;
    text-align: center;
}

.service-icon i {
    font-size: 6rem;
    color: #D4AF37;
    opacity: 0.8;
}

/* 优势网格 */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.advantage-card {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.25s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    border-color: #D4AF37;
}

.advantage-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* 咨询流程时间线 */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-top: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 32px;
    padding: 32px 20px;
    text-align: center;
    transition: 0.2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2ff;
}

.step-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 18px;
    display: inline-block;
    animation: gentlePulse 2s infinite ease-in-out;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    50% {
        transform: scale(1.08);
        color: #c4a032;
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* 合规与专业保障 */
.compliance-block {
    background: #F1F5F9;
    border-radius: 48px;
    padding: 48px;
    text-align: center;
}

.compliance-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
}

.compliance-item {
    flex: 1;
    min-width: 180px;
}

.compliance-item i {
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .service-icon i {
        font-size: 4rem;
    }
    .service-card {
        gap: 32px;
        margin-bottom: 60px;
    }
    .compliance-block {
        padding: 32px 24px;
    }
}