.hero-banner {
        padding: 1.5rem 0 0.5rem;
        position: relative;
    }

    /* Hero Intro */
    .hero-intro {
        background: linear-gradient(135deg, rgba(205,164,41,0.10) 0%, rgba(205,164,41,0.03) 100%);
        border: 1px solid rgba(205,164,41,0.15);
        border-radius: 16px;
        padding: 28px 24px;
        text-align: center;
        margin-top: 20px;
    }

    .hero-intro h1 {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        font-weight: 800;
        background: linear-gradient(135deg, #fff 0%, #ffd873 60%, #cda429 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0 0 14px 0;
        line-height: 1.5;
    }

    .hero-intro p {
        color: rgba(255,255,255,0.7);
        font-size: 0.82rem;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-intro strong {
        color: #ffd873;
    }

    .hero-slider-wrap {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(205, 164, 41, 0.15);
    }

    .heroSwiper {
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
    }

    .hero-slide {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 16px;
        display: block;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        background: #0a0a0a;
    }

    .hero-slide__img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .swiper-slide-active .hero-slide__img {
        transform: scale(1.02);
    }

    .hero-slide__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
        pointer-events: none;
    }

    /* Navigation Arrows */
    .hero-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 42px;
        height: 42px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(205, 164, 41, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #ffd873;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .hero-slider-wrap:hover .hero-nav {
        opacity: 1;
    }

    .hero-nav:hover {
        background: rgba(205, 164, 41, 0.8);
        color: #000;
        border-color: #cda429;
        transform: translateY(-50%) scale(1.1);
    }

    .hero-nav--prev {
        left: 12px;
    }

    .hero-nav--next {
        right: 12px;
    }

    /* Pagination */
    .hero-pagination {
        position: absolute;
        bottom: 16px !important;
        left: 50% !important;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        gap: 8px;
        width: auto !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.3);
        opacity: 1;
        border-radius: 5px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: pointer;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 32px;
        background: linear-gradient(90deg, #cda429, #ffd873);
        border-color: #cda429;
        box-shadow: 0 0 12px rgba(205, 164, 41, 0.5);
    }

    /* Progress Bar */
    .hero-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 10;
    }

    .hero-progress__bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #cda429, #ffd873);
        transition: width 0.1s linear;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-banner {
            padding: 1rem 0 0.25rem;
        }

        .hero-slide {
            border-radius: 12px;
        }

        .hero-slider-wrap {
            border-radius: 12px;
            margin: 0 -4px;
        }

        .heroSwiper {
            border-radius: 12px;
        }

        .hero-nav {
            width: 34px;
            height: 34px;
            opacity: 1;
        }

        .hero-nav--prev { left: 6px; }
        .hero-nav--next { right: 6px; }

        .hero-nav svg {
            width: 16px;
            height: 16px;
        }

        .hero-pagination {
            bottom: 10px !important;
        }

        .hero-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
        }

        .hero-pagination .swiper-pagination-bullet-active {
            width: 24px;
        }

        .hero-intro {
            padding: 22px 18px;
            margin-top: 16px;
        }

        .hero-intro h1 {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-nav {
            display: none;
        }

        .hero-intro {
            padding: 20px 16px;
            margin-top: 16px;
            border-radius: 12px;
        }

        .hero-intro h1 {
            font-size: 1rem;
        }

        .hero-intro p {
            font-size: 0.78rem;
        }
    }