.hero-section {
    width: 100%;
    background: var(--bg2);
}

.swiper-hero {
    width: 100%;
    height: 480px;
}

.swiper-hero .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 60px;
    background: linear-gradient(to top, rgba(13, 13, 26, 0.95) 0%, transparent 100%);
}

.hero-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-desc {
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 500px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.hero-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

/* ===== RESPONSIVE - HERO ===== */
@media (max-width: 900px) {
    .swiper-hero {
        height: 360px;
    }

    .hero-content {
        padding: 30px 30px;
    }

    .hero-title {
        font-size: 26px;
    }
}

@media (max-width: 769px) {
    .swiper-hero {
        height: 240px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-desc {
        display: none;
    }

    .hero-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}
