.hero {
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-8) var(--space-4);
    overflow: hidden;
}

/* 修改背景光晕效果，防止溢出 */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 140%;
    background: radial-gradient(
        circle at center,
        rgba(255, 105, 180, 0.08),
        transparent 70%
    );
    pointer-events: none;
    z-index: -1; /* 确保在内容下方 */
}

.hero-content {
    width: 100%;
    margin-top: -3rem;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 600;
    background: linear-gradient(135deg, var(--text-light) 30%, var(--pink-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    letter-spacing: -0.021em;
}

.hero-subtitle:not(:last-child) {
    margin-bottom: 0;
}


.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: 2.5rem;
    padding: 0;
}

.hero-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    text-decoration: none;
    margin: 0 0.5rem;
}

.hero-btn-primary {
    background: var(--pink-primary);
    color: #fff;
    border: none;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .hero {
        padding: 5rem 3rem;
    }

    .hero-content {
        min-width: 420px;
    }
}

@media (max-width: 1068px) {
    :root {
        --section-spacing: 100px;
    }

    .hero {
        padding: var(--space-7) var(--space-4);
        gap: var(--space-5);
    }

    .hero-content {
        padding-right: var(--space-4);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 4rem 2rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        min-width: auto;
        max-width: 600px;
        margin-top: -2rem;
        padding-top: 1rem;
        text-align: center;
    }
}

@media (max-width: 734px) {
    .hero-title {
        font-size: clamp(2rem, 5vw, 4rem);
    }

    .hero {
        padding: var(--space-6) var(--space-3);
        flex-direction: column;
        text-align: center;
        gap: var(--space-5);
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-2);
    }

}

@media (max-width: 374px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        width: 100%;
        min-width: auto;
        padding: 0 10px;
    }

    .hero-btn {
        padding: 0.875rem 1.5rem;
        margin: 0 0.25rem;
    }
}
