.hs-banner {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.hs-banner>img {
    width: 100%;
    height: auto;
    display: block;
}

.hs-banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: var(--color-text-primary);
}

.hs-banner-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hs-banner-subtitle {
    font-size: 44px;
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hs-banner-desc {
    font-size: var(--text-xl);
    opacity: 0.6;
}

.hs-solution .section-header,
.hs-system .section-header,
.hs-results .section-header,
.hs-case .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.hs-solution .section-header::after,
.hs-system .section-header::after,
.hs-results .section-header::after,
.hs-case .section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6d7280;
    border-radius: 100px;
    margin: var(--space-lg) auto 0;
}

.hs-solution .section-subtitle,
.hs-system .section-subtitle,
.hs-results .section-subtitle,
.hs-case .section-subtitle {
    display: none;
}

.hs-solution {
    background: var(--color-blue);
    padding: var(--space-5xl) 0;
}

.hs-solution-image {
    text-align: center;
}

.hs-solution-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.hs-solution-content {
    max-width: 1200px;
    margin: 0 auto var(--space-3xl);
}

.hs-solution-content p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.hs-solution-content p:last-child {
    margin-bottom: 0;
}

.hs-system {
    background: var(--color-white);
    padding: var(--space-5xl) 0;
}

.hs-system-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: var(--space-3xl);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.hs-system-tabs::-webkit-scrollbar {
    display: none;
}

.hs-system-tabs.dragging {
    cursor: grabbing;
}

.hs-system-tab {
    padding: var(--space-md) var(--space-xl);
    background: var(--color-white);
    border: none;
    border-top: 3px solid;
    border-image: linear-gradient(180deg, #34ae49, #3055a5 100%) 1;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
    flex-shrink: 0;
}

.hs-system-tab:hover {
    color: var(--color-primary);
}

.hs-system-tab.active {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    box-shadow: inset 0 0 0 100px rgba(4, 139, 78, 0.05);
}

.hs-system-swiper-wrapper {
    position: relative;
    margin-bottom: var(--space-3xl);
    padding: 0 80px;
}

.hs-system-swiper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hs-system-swiper .swiper-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.hs-system-slide-title {
    text-align: center;
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xl);
}

.hs-system-swiper-wrapper .swiper-button-prev,
.hs-system-swiper-wrapper .swiper-button-next {
    position: absolute;
    color: #9ca3af;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 0;
    box-shadow: none;
    top: 60%;
    transform: translateY(-50%);
    margin-top: 0;
    z-index: 10;
    transition: color 0.3s ease;
}

.hs-system-swiper-wrapper .swiper-button-prev:hover,
.hs-system-swiper-wrapper .swiper-button-next:hover {
    color: var(--color-primary);
}

.hs-system-swiper-wrapper .swiper-button-prev {
    left: 20px;
}

.hs-system-swiper-wrapper .swiper-button-next {
    right: 20px;
}

.hs-system-swiper-wrapper .swiper-button-prev::after,
.hs-system-swiper-wrapper .swiper-button-next::after {
    font-size: 32px;
    font-weight: 300;
}

.hs-system-desc {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hs-system-desc-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.hs-results {
    background: var(--color-blue);
    padding: var(--space-5xl) 0;
}

.hs-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.hs-results-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.50);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0px 8px 24px 0px rgba(43, 89, 193, 0.08);
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
}

.hs-results-item:hover {
    box-shadow: 0px 12px 32px 0px rgba(43, 89, 193, 0.12);
    transform: translateY(-2px);
}

.hs-results-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.hs-results-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hs-results-content {
    flex: 1;
}

.hs-results-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.hs-results-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.hs-case {
    background: var(--color-white);
    padding: var(--space-5xl) 0;
    overflow: visible;
}

#container {
    width: 100%;
    height: 800px;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.map-marker {
    width: 24px;
    height: 32px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 32"><defs><linearGradient id="g1" x1="50%" y1="0%" x2="50%" y2="100%"><stop offset="0%" stop-color="%23fdfefe"/><stop offset="100%" stop-color="%23dae6ff"/></linearGradient></defs><path d="M12 0C5.4 0 0 5.4 0 12c0 9 12 20 12 20s12-11 12-20c0-6.6-5.4-12-12-12z" fill="url(%23g1)"/><circle cx="12" cy="12" r="4" fill="%233055a5"/></svg>') no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: all 0.2s ease;
    filter: drop-shadow(0px 4px 10px rgba(10, 94, 56, 0.50));
}

.map-marker.active {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 32"><defs><linearGradient id="g2" x1="50%" y1="0%" x2="50%" y2="100%"><stop offset="0%" stop-color="%230a61fa"/><stop offset="100%" stop-color="%2350dbf9"/></linearGradient></defs><path d="M12 0C5.4 0 0 5.4 0 12c0 9 12 20 12 20s12-11 12-20c0-6.6-5.4-12-12-12z" fill="url(%23g2)"/><circle cx="12" cy="12" r="4" fill="white"/></svg>') no-repeat center;
    background-size: contain;
    transform: scale(1.2);
}

.map-city-label {
    padding: 8px 20px;
    background: #ffffff;
    color: #3055a5;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 20px 0px rgba(10, 94, 56, 0.50);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, rgba(111, 158, 255, 0.90) 22%, #3055a5 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.map-city-label.active {
    background: linear-gradient(180deg, #34ae49, #3055a5 100%);
    background-image: linear-gradient(180deg, #34ae49, #3055a5 100%);
    background-origin: padding-box;
    background-clip: padding-box;
    border: 3px solid #ffffff;
    border-radius: 100px;
    box-shadow: 0px 4px 20px 0px rgba(10, 94, 56, 0.50);
    color: #ffffff;
    transform: scale(1.05);
}

.map-info-window {
    background: linear-gradient(180deg, #34ae49, #3055a5 100%);
    border-radius: 12px;
    box-shadow: 0px 4px 20px 0px rgba(10, 94, 56, 0.50);
    padding: 16px 20px;
    max-width: 320px;
    color: white;
}

.map-info-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.map-info-subtitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.map-info-desc {
    font-size: 12px;
    line-height: 1.8;
}

.amap-logo,
.amap-copyright {
    display: none !important;
}

@media (max-width: 768px) {

    .map-marker {
        width: 18px;
        height: 24px;
    }

    .map-marker.active {
        transform: scale(1.1);
    }

    .map-city-label {
        font-size: 11px;
        padding: 4px 10px;
    }

    .map-city-label.active {
        transform: scale(1.02);
    }

    .map-city-label-mobile {
        white-space: nowrap;
        font-size: 10px;
        padding: 4px 8px;
    }

    .map-info-window {
        display: none !important;
    }

    #container {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .map-marker {
        width: 14px;
        height: 18px;
    }

    .map-city-label {
        font-size: 9px;
        padding: 3px 6px;
    }

    .map-city-label-mobile {
        font-size: 8px;
    }

    #container {
        height: 380px;
    }
}