.section-indicator {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.section-indicator.visible {
    opacity: 1;
}

.section-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.section-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.section-dot:hover {
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.section-dot .dot-label {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.section-dot:hover .dot-label {
    opacity: 1;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 768px) {
    .section-indicator {
        display: none !important;
    }
}