.hs-wrapper-043a10c9 {
    position: relative;
    width: 100%;
}

.hs-sticky-043a10c9 {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.hs-track-043a10c9 {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hs-panel-043a10c9 {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hs-panel-inner-043a10c9 {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Progress Bar */
.hs-progress-bar-043a10c9 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hs-progress-bar-043a10c9.visible {
    opacity: 1;
}

.hs-progress-fill-043a10c9 {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* Navigation Dots */
.hs-nav-dots-043a10c9 {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hs-nav-dots-043a10c9.visible {
    opacity: 1;
    pointer-events: auto;
}

.hs-dot-043a10c9 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hs-dot-043a10c9:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hs-dot-043a10c9.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}

/* Mobile: disable horizontal scroll, stack vertically */
@media (max-width: 767px) {
    .hs-wrapper-043a10c9 {
        height: auto !important;
    }

    .hs-sticky-043a10c9 {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .hs-track-043a10c9 {
        flex-direction: column;
        width: 100% !important;
        transform: none !important;
        transition: none;
    }

    .hs-panel-043a10c9 {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        min-height: 100vh;
    }

    .hs-panel-inner-043a10c9 {
        overflow: visible;
        height: auto;
    }

    .hs-progress-bar-043a10c9,
    .hs-nav-dots-043a10c9 {
        display: none !important;
    }
}
