/* Hero 英雄区域样式 - 新版设计 */

.hero-new {
    width: 100%;
    height: 560px;
    background-image: url('../../images/backgrounds/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-new .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* 左侧内容区域 */
.hero-new .hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-new .hero-label {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(93, 121, 227, 0.1);
    color: #3457DC;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-new .hero-title {
    width: 640px;
    min-height: 60px;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 48px;
    color: #17181A;
    letter-spacing: -1px;
    line-height: 60px;
    mix-blend-mode: normal;
    margin: 0 0 20px 0;
}

.hero-new .hero-description {
    width: 670px;
    min-height: 48px;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7C7D81;
    line-height: 24px;
    mix-blend-mode: normal;
    margin: 0 0 40px 0;
}

/* 按钮组 */
.hero-new .hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-new .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-new .btn-primary {
    width: 161px;
    height: 36px;
    border-radius: 18px;
    background: #3457DC;
    mix-blend-mode: normal;
    color: #FFFFFF;
    box-shadow: none;
    padding: 0;
    line-height: 36px;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.hero-new .btn-primary:hover {
    background-color: #2A47C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 87, 220, 0.3);
}

.hero-new .btn-secondary {
    width: 77px;
    height: 36px;
    border-radius: 18px;
    background: #FFFFFF;
    mix-blend-mode: normal;
    color: #45464A;
    border: none;
    padding: 0;
    line-height: 36px;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.hero-new .btn-secondary:hover {
    background-color: #F5F5F5;
    border: none;
}

/* 右侧产品展示区域 */
.hero-new .hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
}

.hero-new .hero-product-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hero-new .hero-product-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* 占位样式（如果图片加载失败） */
.hero-new .hero-product-card img[onerror] {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    .hero-new .container {
        gap: 40px;
    }
    
    .hero-new .hero-content {
        max-width: 500px;
    }
    
    .hero-new .hero-title {
        width: 100%;
        font-size: 42px;
        line-height: 52px;
    }
    
    .hero-new .hero-description {
        width: 100%;
        min-height: auto;
    }
}

/* 响应式设计 - 移动端 */
@media screen and (max-width: 768px) {
    .hero-new {
        height: auto;
        padding: 50px 0;
    }
    
    .hero-new .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-new .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-new .hero-label {
        margin-bottom: 12px;
    }
    
    .hero-new .hero-title {
        width: 100%;
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 16px;
    }
    
    .hero-new .hero-description {
        width: 100%;
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 32px;
    }
    
    .hero-new .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-new .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-new .hero-image {
        max-width: 100%;
    }
}
