.hero {
    padding: 3vw 0 6vw;
    background: linear-gradient(145deg, #165dff4d 0%, #F2F3F5 100%);
    text-align: center;
    /* 阴影增强层次感 */
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.value-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
    opacity: 0;
}

.value-point {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.value-point::before {
    content: '✓' !important;
    color: var(--primary);
    margin-right: 8px;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
}

.hero-slogan {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    opacity: 0;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0;
}

.hero-subtitle strong {
    color: blue;
}
