/* --- Hero Component Styles --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    min-height: 600px;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 800px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    line-height: 1.6;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
}

.hero__stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #3b82f6;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero__cta-button {
    background: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero__cta-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
}
/* 次要按钮样式 */
.hero__cta-button--secondary {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.hero__cta-button--secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}