/* Hero Section */
.hero-section {
    background: #000;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 左侧内容 */
.hero-left {
    padding-right: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 30px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #b8b8b8;
    margin: 0 0 20px;
}

.hero-text {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    margin: 0 0 35px;
}

.hero-button {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-bottom: 50px;
}

.hero-button:hover {
    background: #c9a961;
    border-color: #c9a961;
    color: #000;
}

/* 统计数据 */
.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-plus {
    font-size: 36px;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    line-height: 1.5;
    color: #999;
    text-transform: lowercase;
}

/* 右侧图片 */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: cover;
    -webkit-mask-image: url('../images/mask.svg');
    mask-image: url('../images/mask.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-left {
        padding-right: 20px;
    }
}

@media (max-width: 968px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hero-button {
        padding: 12px 32px;
        font-size: 13px;
        margin-bottom: 40px;
    }

    .hero-stats {
        gap: 40px;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-plus {
        font-size: 30px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-plus {
        font-size: 24px;
    }

    .hero-image-wrapper {
        height: 350px;
    }

    .hero-image {
        width: 90%;
    }
}
